Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
7answers
3k views

What are good algorithms for vehicle license plate detection?

Background For my final project at university, I'm developing a vehicle license plate detection application. I consider myself an intermediate programmer, however my mathematics knowledge lacks ...
27
votes
11answers
10k views

How to detect page zoom level in all modern browsers?

How can I detect page zoom level in all modern browsers? While this thread tells how to do it in IE7 and IE8, I can't find good solution for FF, Safari and Chrome. For FF one of the suggested ...
26
votes
8answers
2k views

Detecting programming language from a snippet

What would be the best way to detect what programming language is used in a snippet of code?
22
votes
8answers
47k views

Detecting IE6 using jQuery.support

Anyone have any ideas on how to test for something specific for IE6 (and not IE7) using jquery.support? My problem is that IE6 supports :hover psuedo-class only for anchor elements and IE7 does ...
19
votes
10answers
3k views

How to detect if a Windows version is legal or not?

I'm not interested in getting version information. All I want to do is to make sure my application will only run on a legal version of Windows and not on a pirated version. Windows uses some trick to ...
19
votes
5answers
17k views

How can I detect if Flash is installed and if not, display a hidden div that informs the user?

How can I use javascript/jQuery/etc to detect if Flash is installed and if it isn't, display a div that contains information informing the user that they need to install flash?
16
votes
1answer
98 views

Detecting colors for an Image using PHP

How can I detect the top 2 colors of an Image in PHP? for example I have this image: This function/process will return: 0000FF or blue and FFFF00 or YELLOW Thanks
14
votes
4answers
418 views

iOS / C: Algorithm to detect phonemes

I am searching for an algorithm to determine whether realtime audio input matches one of 144 given (and comfortably distinct) phoneme-pairs. Preferably the lowest level that does the job. I'm ...
12
votes
3answers
759 views

list every font a user's browser can display

Is there a way in javascript to obtain the names of all fonts (or font-families) that the browser can show? (I want to give the user a dropdown with a list of all available fonts, and allow the user ...
10
votes
7answers
15k views

Problem with cocos2D for iPhone and touch detection

I just don't get it. I use cocos2d for development of a small game on the iPhone/Pod. The framework is just great, but I fail at touch detection. I read that you just need to overwrite the proper ...
9
votes
4answers
801 views

FFT Inaccuracy for C#

Ive been experimenting with the FFT algorithm. I use NAudio along with a working code of the FFT algorithm from the internet. Based on my observations of the performance, the resulting pitch is ...
9
votes
4answers
512 views

How to detect language

Are there any good, open source engines out there for detecting what language a text is in, perhaps with a probability metric? One that I can run locally and doesn't query Google or Bing? I'd like to ...
9
votes
3answers
3k views

JavaScript Detection / Browser Statistics

This has been asked few times but I think it's still worth checking with you guys for some more input. All my websites use Google Analytics for stats. Since it relies on JavaScript I thought it was ...
9
votes
6answers
12k views

How to detect the physical connected state of a network cable/connector?

In a Linux environment, I need to detect the physical connected or disconnected state of an RJ45 connector to its socket. Preferably using BASH scripting only. The following solutions which have ...
8
votes
3answers
146 views

How Can I Implement A Standard Set of Hyperlink Detection Rules in Delphi

I currently do automatic detection of hyperlinks within text in my program. I made it very simple and only look for http:// or www. However, a user suggested to me that I extend it to other forms, ...
8
votes
3answers
214 views

What kind of descriptor should I use for seal cub detection?

I have a project to detect and count seal cubs (the animal) in an aerial image which is taken from beach. The seal cubs are black and small compared to adult seals which are brown and large. Some ...
8
votes
4answers
743 views

Detect dead code in C#

How can I detect dead code in my C# application?
8
votes
3answers
372 views

How can the page know I'm analyzing it with firebug

Look Wow! How can the webpage know I'm using firebug? BTW I couldn't find out how to show the translucent add banner.
7
votes
3answers
233 views

How can I detect if UI orientation is locked or not on iOS?

Is it possible to detect UI orientation is locked or not currently? If so, how can I do that? I want to do something with gravity sensor when only UI orientation is not locked.
7
votes
1answer
713 views

Javascript - detect if event lister is supported

Is it possible to detect if certain events are supported in certain browsers? I can detect if the browser supports document.addEventListener, but I need to know if it supports the event ...
7
votes
4answers
3k views

If Browser is Internet Explorer: run an alternative script instead

I'm using an image carousel script that is quite heavy on the browser. It works great in Opera and Chrome, half decent in FF and absolutely breaks my balls in IE. So i'd like to give IE users an ...
7
votes
8answers
1k views

PHP - Best way to detect bot from user agent?

Time goes by, but still no perfect solution... See if someone has a bright idea to differentiate bot from human-loaded web page? State of the art is still loading a long list of well-known SE bots and ...
6
votes
1answer
128 views

Having some issues with making pacman?

Edit: Totally forgot to mention I'm coding in Java I'm having a real hard time making some kind of detection system or some way to make my pacman sprite/character move smoothly through my board in ...
6
votes
2answers
183 views

51Degrees reloading on each request slows ASP.NET MVC to a crawl

My ASP.NET MVC 3 project slows to a crawl after adding the 51Degrees mobile detection library. The 51Degrees log file defined by <log logFile="~/bin/App_Data/51Log.txt" logLevel="Info" /> in ...
6
votes
2answers
804 views

html5 input type number: detect whether spinbox or not (and no other features)

In Webkit browsers, an input[type=number] has a spinbox control: However, Safari does not follow some other input[type=number] rules, like enforcing that only numeric characters are entered. ...
6
votes
3answers
457 views

Malicious crawler blocker for ASP.NET

I have just stumbled upon Bad Behavior - a plugin for PHP that promises to detect spam and malicious crawlers by preventing them from accessing the site at all. Does something similar exist for ...
6
votes
1answer
300 views

How to detect how far the object on photo is from another objects on that photo?

So for example we have real life photo. how to get (relativly to image dimentions for example) the distance from wall to girls, from girls to trees if all we know ts this picture? Papers with ...
6
votes
4answers
123 views

How to protect website resource from downloading?

Like this .mp3,you can listen online: http://d1.s.hjfile.cn/podcast/20100222/2010022290717093_217.mp3 But I don't want to allow downloading. How to approach that?
6
votes
7answers
3k views

Detect caps lock on/off using jQuery

How can I detect caps lock key on/off using jQuery? I have a password textbox, and I allow only small letters so I don't want caps lock key to be on. Is it possible to detect the state of Caps Lock ...
6
votes
3answers
3k views

How can I detect if the user is on localhost in PHP?

In other words, how can I tell if the person using my web application is on the server it resides on? If I remember correctly, PHPMyAdmin does something like this for security reasons.
6
votes
2answers
1k views

OpenCV: Detect blinking lights in a video feed

I have a video feed. This video feed contains several lights blinking at different rates. All lights are the same color (they are all infrared LEDs). How can I detect the position and frequency of ...
5
votes
3answers
158 views

Java - Collision Detection with MANY objects

I'm rather new to Java, I mainly focused on the Graphics aspects to create a little 2DGame. I've watched/looked at several tutorials but none of them were that pleasing :x I already have a player(a ...
5
votes
2answers
189 views

Is this byte array a password-protected PDF document?

I have a C# byte array, and I need to know if it's a password-protected PDF document. How can I make this determination? I'm inspecting the document for the PDF magic cookie to determine if it's a ...
5
votes
4answers
181 views

Detect which image is sharper

I'm looking for a way to detect which of two (similar) images is sharper. I'm thinking this could be using some measure of overall sharpness and generating a score (hypothetical example: image1 has ...
5
votes
3answers
312 views

Detecting mime-type of a MySQL BLOB in Java

Yes I know that we shouldn't store images on a database, thanks. That said, is there a way to detect in java the mime type of a BLOB stored in mysql? It is only for images (.gif, .png, .jpeg, etc.) ...
5
votes
9answers
588 views

Capture keypress to filter elements

I'm creating a <select> replacement using jQuery to replace it with divs and links. Now I want to filter it when I start to type something with the new select open. Like Google Translate does ...
5
votes
1answer
2k views

How to detect reliably Mac OS X, iOS, Linux, Windows in C preprocessor?

Possible Duplicate: What #defines are setup by xCode when compiling for iPhone If here's some cross-platform C/C++ code should be compiled on Mac OS X, iOS, Linux, Windows, how can I detect ...
5
votes
1answer
501 views

What is a good approach for extracting portions of speech from an arbitrary audio file?

I have a set of audio files that are uploaded by users, and there is no knowing what they contain. I would like to take an arbitrary audio file, and extract each of the instances where someone is ...
5
votes
2answers
350 views

The way to detect web scraping

I need to detect scraping of info on my website. I tried detection based on behavior patterns, and it seems to be promising, although relatively computing heavy. The base is to collect request ...
5
votes
3answers
884 views

Android - How to approach fall detection algorithm

I want to be able to feature a fairly simple fall detection algorithm in my application. At the moment in onSensorChanged(), I am getting the absolute value of the current x,x,z values and subtracting ...
5
votes
2answers
3k views

How to detect a cracked iPhone App and a jailbroken device (different methods)

I'm building a blacklisting service for cracked iPhone apps and I am curious if I missed a method for detecting cracked apps. In the moment following app crack detection methods are available for the ...
5
votes
5answers
1k views

Python - can I detect unicode string language code?

I'm faced with a situation where I'm reading a string of text and I need to detect the language code (en, de, fr, sp, etc). Is there a simple way to do this in python? thanks.
5
votes
4answers
2k views

Makefile that distincts between Windows and Unix-like systems

I would like to have the same Makefile for building on Linux and on Windows. I use the default GNU make on Linux and the mingw32-make (also GNU make) on Windows. I want the Makefile to detect ...
5
votes
4answers
212 views

Is there any algorithm for determining 3d position in such case? (images below)

So first of all I have such image (and ofcourse I have all points coordinates in 2d so I can regenerate lines and check where they cross each other) But hey, I have another Image of same lines (I ...
5
votes
2answers
1k views

Notification of or detecting screenshot being taken?

Is there a notification or other mechanism of being informed that the user is taking a screenshot with the home/power buttons? I've seen threads about wanting to disable the taking of screenshots, ...
5
votes
4answers
2k views

Detecting and accessing a usb device from within a webbrowser -i.e using a plugin

Is it possible through a plugin - activeX, Java or Flex to write a brower plugin that is able to detect an read a data stream from a USB device channel. I have done some research but have not found ...
4
votes
1answer
33 views

shazam like feature in ios app?

I would like to write an app that allows users to identify songs by putting the mic next to a speaker and listen to the song for a few seconds... so exactly what Shazam does. Is there any framework ...
4
votes
4answers
64 views

How to determine SQL Server 2008 or above

I need to determine programmatically if the database supports the Geography data type and Spatial indexes. These features were introduced in 2008. I also need to determine if CLR is enabled as these ...
4
votes
1answer
75 views

How to detect URL links after setting EM_AUTOURLDETECT in TRichEdit?

I'm trying to implement URL detection for TRichEdit component using EM_AUTOURLDETECT message. I have a problem with the following code procedure TForm1.Button1Click(Sender: TObject); var Mask: Word; ...
4
votes
8answers
102 views

Identifying duplicate elements in a list containing 300k+ Strings

I have a list containing 305899 Strings (which is the username for a website). After I remove all the duplicates, the number goes down to 172123 Strings. I want to find how many times a particular ...

1 2 3 4 5 10