Questions tagged [simplecv]

SimpleCV is an Open Source Framework for Machine Vision

SimpleCV is a Framework of several machine vision and statistical libraries whose goal is to create an Open Source Matlab-like interface for working with image processing.

Its core functions are derived from OpenCV, the Python Imaging Library (PIL), the Python Scientific Computing Library (Scipy), and PyGame.

More information is available at SimpleCV's website.

181 questions
0
votes
1 answer

Special color histogram in SimpleCV

I need to cunstruct color histogram (using HSV color space) in SimpleCV, the problem is that the histogram needs cointain only colors where saturation and brightness are over certain level (which is different of each channel). How do I achieve…
0
votes
1 answer

Simplecv & shell input

I'm developing an app using SimpleCV and I want to use shell while this application runs, to input commands. I'm using Python and since this SimpleCV is a running thread, how am I gonna wait for key events?
dramaticlook
  • 653
  • 1
  • 12
  • 39
0
votes
1 answer

SimpleCV 1.3 update & pygame

I recently updated to SimpleCV 1.3. When I try to run examples I get the following: objc[92210]: Class SDLTranslatorResponder is implemented in both /Library/Frameworks/SDL.framework/Versions/A/SDL and /usr/local/lib/libSDL-1.2.0.dylib. One of the…
dramaticlook
  • 653
  • 1
  • 12
  • 39
0
votes
1 answer

Use simplecv to display videos in multiple windows

I'm trying to display the output of 2 webcams in 2 windows using SimpleCV, but what I get with the following code is a sputtering combination in what appears to be 2 different sized windows, merged into one. cam = Camera(0) cam1 = Camera(1) while…
rocketas
  • 1,679
  • 3
  • 18
  • 30
0
votes
1 answer

extract features from image database in simpleCV

I am new to python, therefore I need some help: AIM: I have an image database containing 10 images. I want to use a hue feature extractor to extract the hue from each image and store it in a list and compare the list with hues from other images not…
user1665514
  • 69
  • 2
  • 7
0
votes
1 answer

SimpleCV Image database import

I am rather new to SimpleCV. I am running the newest version of SimpleCV on Windows Vista. Question: How do I import a zip file containing images into SimpleCV? The system works fine to import (1) single images on local drive and (2) url links, but…
Alfred
  • 33
  • 1
  • 5
0
votes
2 answers

ImportError: No module named cv

I get this error on running SimpleCV: Traceback (most recent call last): File "", line 1, in File "build/bdist.macosx-10.7-intel/egg/SimpleCV/__init__.py", line 1, in File…
user1467574
  • 1
  • 1
  • 1
0
votes
1 answer

Can SimpleCV read out multiple USB camera simultaneous in Windows 7?

I've been using OpenCV to read out camera output and process the frames. I am on Windows 7, and it turns out that OpenCV cannot simultaneously read multiple USB cameras in Windows. Does anybody have an experience with SimpleCV in Windows 7 in this…
pkout
  • 6,430
  • 2
  • 45
  • 55
0
votes
3 answers

SimpleCv findkeypointmatch

Could someone shed some light on why the following, in simplecv, does not work? https://gist.github.com/2220293 Apparently, the image.findKeypointMatch attribute does not exist? It is indeed not the simplecv documentation.. How could I accomplish…
alexizydorczyk
  • 850
  • 1
  • 6
  • 25
-1
votes
1 answer

i need a solution for the module not working on my system

SyntaxError: Missing parentheses in call to 'print'. Did you mean print('unit test')? as I want to just get the access of the image in the camera
-1
votes
1 answer

SimpleCV - detect bright spots in an image

So, I need to detect bright spots in an image using SimpleCV and python. I already have the image acquisition sorted out, my only problem is finding the bright spot(s). Any idea how can I do this? (got gaussian blur already, for spot-to-area…
Jan Novák
  • 30
  • 1
  • 12
-1
votes
1 answer

Capture an image using a camera and then draw a 'freeform' 'filled' area over the captured image using Python, SimpleCV & OpenCV

I'm trying to work with Python, opencv and simplecv. I want to capture an image using a camera and then draw a 'freeform' 'filled' area over the captured image using Mouse. Can somebody please help me accomplish this. Here is what I have done till…
Max
  • 105
  • 1
  • 3
-1
votes
1 answer

Editing a code: how to access my webcame instead of a photo

So I am having a prewritten code for finding the brightest pixel in an Image - the code has commands in it which load a picture. What I need is to find the brightest pixel in a live video made with my webcame. So what I need to do now is to delete…
Jennan
  • 89
  • 11
-1
votes
1 answer

How to programmatically fill in RGB noise in the transparent region of an image using Python?

I need to process a lot of images using Python. All these images have some transparent region (alpha channel) of different sizes. I need to programmatically fill in RGB noise in the transparent region of those images, but keep the non-transparent…
userpal
  • 1,483
  • 2
  • 22
  • 38
-2
votes
2 answers

how does this page implement the face recognition algorithm?

Lately I've been very interested in this subject, for example I found a very interesting page that actually does it and it does it remarkable well http://www.pictriev.com/ How do they achieve such a grade of accuracy?
1 2 3
12
13