Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
detection
- Page 1
Facial Emotion Detection with Vision Transformers and DeepFace Library
Programming
Computer Science
1 Year Ago
by usmanmalik57
…displays a screaming face. ## Facial Emotion
Detection
with DeepFace DeepFace is a Python library that…analysis functionalities, such as facial recognition, emotion
detection
, age and gender estimation, and facial attribute…via the vision transformer. ## Facial Emotion
Detection
Using Vision Transformers [Vision transformer](https://arxiv…
Intrusion Detection/Tracking employee activities in VB.Net
Community Center
15 Years Ago
by coolheadedguy
…Encryption, Access control and Intrusion
detection
/tracking. The intrusion
detection
/tracking part simply has to do… programming platform enable you to implement intrusion
detection
/tracking? 4. Can employee’s performance … Are there drawbacks in the implementation of intrusion
detection
/tracking? (setback) Thanks a lot, your…
2D Game Collision Detection Issues
Programming
Software Development
12 Years Ago
by Chuckleluck
… days, I've been struggling with getting collision
detection
to work for my game, a 2D sidescrolling platformer…is example code using my most recent method of collision
detection
, although it has some flaws: // main.h #ifndef… would run slow because of all the calculations collision
detection
must make each frame. Thus, my question is,…
Re: 2D Collision Detection help?
Programming
Software Development
13 Years Ago
by mrnutty
…(books, online tutorials, etc.) on algorithms for 2D collision
detection
? I've searched a little, and all the ones I…clarify, I know [I]how[/I] to do collision
detection
, just not efficiently.[/QUOTE] which shapes are you trying …to find collision
detection
on? There seems to be tons of resource in …
Face Detection
Programming
Software Development
10 Years Ago
by Parth_1
I am Developing a project on Face
Detection
in images for my final year project in university. I … opencv or matlab.I need code for face
detection
on images in java. Face
detection
as in box pattern on Face while… any image on software. Anyone Having any idea for Face
detection
do reply me asap.
Re: 2D Collision Detection help?
Programming
Software Development
13 Years Ago
by BobS0327
… (books, online tutorials, etc.) on algorithms for 2D collision
detection
? I've searched a little, and all the ones I…to clarify, I know [I]how[/I] to do collision
detection
, just not efficiently.[/QUOTE] [URL="http://www.amazon.…URL] has a lot of excellent information on 2D collision
detection
. I have access to this book if you should …
Re: Face Detection
Programming
Software Development
4 Years Ago
by hussainmujtaba
You can use Viola jones algoritm for face
detection
.And also use Python as it is much easier that way.Here is a simple face
detection
guide using opencv [face
detection
with viola jones algorithm](https://www.mygreatlearning.com/blog/viola-jones-algorithm/)
RE: Detecting Masquerading using Intrusion Detection System Project
Programming
Computer Science
16 Years Ago
by olaolu143
…project in the above topic (Detecting Masquerading using Intrusion
Detection
System). Can you please give me any suggestions or…advice me on which technique to use for anomaly
detection
? And is there an already exisiting database with known… signature that I can use for misuse
detection
? Any advice will be highly appreciated. Thanks.
Require help in detection collison between 2 snakes
Programming
Software Development
16 Years Ago
by Nyaato
… to work it out. I want to implement a collision
detection
between two snakes that would be in the maze. Instead… this method is only computer to player
detection
, there is so such player to computer
detection
. I'm stuck on this part…
project on intrusion detection in mobile device
Community Center
16 Years Ago
by ANUPAM.SINGH
Develop a Network Intrusion
Detection
System in C# Hi. I'm a pre final year …student of Computing.. I've chosen "A network intrusion
detection
system in mobile devices" as my final year project… from you guys, about project and research papers of intrusion
detection
in mobile devives . can you guide and suggest me. I…
want to know algorithm for intrusion detection in mobile devices
Programming
Software Development
16 Years Ago
by Amit.sharma
hello sir, I want to know that how to create a algorithm for intrsion
detection
in mobile devices and can you send the algorithm for this. I want to know about intrusion
detection
and basic tools which is required for create a intrusion
detection
program. Please help me for this project. Thans, Amit Sharma
Body Detection and Recognition
Programming
Software Development
14 Years Ago
by dolly_olaide
…, I am currently working on a project for human body
detection
and recognition. I am using OpenCV. So far I've… concentrated on the facial
detection
and recognition. The
detection
works well using the haarcascade classifier provided from OpenCV…
free face detection web service api
Programming
Computer Science
14 Years Ago
by mess110
Hello! I made a frontal face
detection
web service. Free to use, no limitations for the open source world and programmers all around. [URL="http://
detection
.myvhost.de"]free face
detection
api[/URL] Give it a try :) I hope programmers all around find it useful. (if this is not the right place to post this please tell me)
face detection & background music simultaneously
Programming
Software Development
14 Years Ago
by sah
I wanna play background music and face
detection
simultaneously. But i couldn't play the music, though …separate project). When i call the function inside the face
detection
system then no music heard. i can't find out…the music when i call objBkMusic.playMusic(); inside the face
detection
system. For clarification, here is a portion of the program…
Help with collision detection in SDL
Programming
Software Development
14 Years Ago
by spooder weld
…writing a 2D platforming engine and I had good collision
detection
, but I had to add a separate condition for … the for loop I am now using for the collision
detection
: [code] for( int t = 0; t < floors; t++ ) {…the playervspeed accordingly. Before I had to have one collision
detection
function for every platform, so this is much better! …
Re: Collision Detection
Programming
Software Development
14 Years Ago
by javanoob101
… classmate gave me a snippit of [I]his[/I] collision
detection
so I played around with the values and Tada! it…; y1 = y + 8; counter = 0; } [COLOR="Red"]//Collision
Detection
[/COLOR] if (x1 >= ranx && rany + 50 >…
2D Collision Detection help?
Programming
Software Development
13 Years Ago
by Chuckleluck
Can someone give me some resources (books, online tutorials, etc.) on algorithms for 2D collision
detection
? I've searched a little, and all the ones I can find are for 3D collision
detection
. Thanks in advance. EDIT: Just to clarify, I know [I]how[/I] to do collision
detection
, just not efficiently.
Collision Detection using Bounding Rectangle method: KineticJS and HTML5
Programming
Game Development
11 Years Ago
by gamingthinktank
Collision
Detection
using Bounding Rectangle method [Collision
Detection
using Bounding Box method with KineticJS and HTML5](http://www.gamingthinktank.com/2013/07/11/collision-
detection
-using-bounding-rectangle-method-kineticjs-and-html5-canvas-tutorial/)
Bounding Circle collision detection: KineticJS/HTML5 Tutorial
Programming
Game Development
11 Years Ago
by gamingthinktank
This tutorial explains the mathematics behind collision
detection
using bounding circle method. Source code and online demo is available with the tutorial. [Bounding Circle collision
detection
: KineticJS/HTML5 Tutorial](http://www.gamingthinktank.com/2013/07/23/bounding-circle-collision-
detection
-kineticjshtml5-tutorial/)
Re: image detection using java
Programming
Software Development
14 Years Ago
by askreiyna
…1279384]Can you explain what you mean by "image
detection
"?[/QUOTE] ermmm...how to explain ya??? okay..it is…example.. before this my friend was made an teeth patches
detection
system, where thru the system, user have to upload … idea?? before this i've heard about circle
detection
and thumb nail
detection
. but i've no idea on how to…
anomaly detection system
Hardware and Software
Information Security
20 Years Ago
by blackberry
hi my friends. as i know there are many implemented NIDS based on misuse
detection
as snort. but my question is about anomaly
detection
based systems. is there anyone implemented? cheers.
DirectX - Collision detection
Programming
Game Development
17 Years Ago
by god_nathan
anybody can help me to find the 2D collision
detection
in a easiest way / different ways of 2D collision
detection
. I am using DirectX 9.0 SDK & VC2005 IDE Thanks in advance.
2D parity error detection scheme
Programming
Computer Science
17 Years Ago
by tonee
… blocks have been encoded using the two-dimensional parity error
detection
scheme. That is, the rows have been encoded using odd… of 5 bits and apply the two-dimensional parity error
detection
scheme using even parity. Show the encoded blocks that would…
Doing final year project based upon an intrusion detection system (IDS) - Need Help!
Programming
Software Development
17 Years Ago
by naveed.pasha
… network and computer security. I want to develop an Intrusion
Detection
System, possibly making it platform independent into a network intrusion…
detection
system (NIDS). I've been doing quite a bit of …
Re: Doing final year project based upon an intrusion detection system (IDS) - Need Help!
Programming
Software Development
17 Years Ago
by Salem
Goto [url]http://sourceforge.net[/url] Type "Intrusion AND
Detection
AND System" into the search box, and click "[URL="http://sourceforge.net/search/?type_of_search=soft&type_of_search=soft&words=Intrusion+AND+
Detection
+AND+System"]search[/URL]".
Re: RE: Detecting Masquerading using Intrusion Detection System Project
Programming
Computer Science
16 Years Ago
by Acidburn
such a
detection
could be spotted by a neural network, thats the only idea that comes to mind. I'll keep thinking though
memory leak detection tool, need advice
Programming
Software Development
16 Years Ago
by kux
I've been searching for a memory leak
detection
tool for windows, something similar to valgrind under Linux, but all tools that i find cost, or just have free trials. Does anyone know a FREE memory leak
detection
tool for windows ?
Re: memory leak detection tool, need advice
Programming
Software Development
16 Years Ago
by Tilir
…=kux;658561]I've been searching for a memory leak
detection
tool for windows, something similar to valgrind under Linux, but… have free trials. Does anyone know a FREE memory leak
detection
tool for windows ?[/QUOTE] Check this: [url]http://www.codeproject…
Re: Require help in detection collison between 2 snakes
Programming
Software Development
16 Years Ago
by Murtan
I've always thought that the 'snake' collision
detection
just looked at the next square the snakes head was …
video conference,camera detection problem
Programming
Software Development
15 Years Ago
by m_sam6
… but i faced many problems with JMF especially in camera
detection
since it can detect VFW cameras only and detect default… opinions and is there other cross platform framework to do
detection
,capture,streaming thanks in advance
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC