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
2
votes
1 answer

SimpleCV Jpeg Streamer only works with local host

When I run the following python code and connect to in chrome localhost:8080 I can see my camera but then if I try to connect to TheComputersIP:8080 on chrome on another device on the same network I cant connect and just get error connection…
StackNinja
  • 91
  • 1
  • 8
2
votes
1 answer

ShimWarning on importing Shell form SimpleCV

When I import Shell from SimpleCV from SimpleCV import Shell I get this error C:\Python27\lib\site-packages\IPython\config.py:13: ShimWarning: The IPython.config package has been deprecated. You should import from traitlets.config instead. …
2
votes
2 answers

SimpleCV not working Python3.4 SyntaxError: Missing parentheses in call to 'print'

So I'm trying to install SimpleCV on my Mac which is running OS X 10.10.3 (Yosemite). I have python 3.4.3 installed and pygame is also installed (which I apparently need for SimpleCV). I have installed SimpleCV by running sudo pip3 install…
Adam
  • 21
  • 1
  • 3
2
votes
0 answers

SimpleCV and multithreading

I'm trying to use SimpleCV for image capture in Python (Windows). Capture is performed inside a function, which I want to run inside a thread. This is my code: # -*- encoding: utf-8 -*- import threading import time from SimpleCV import Camera def…
sysseon
  • 177
  • 3
  • 14
2
votes
1 answer

Setting up SimpleCV with uv4l raspicam driver

I have installed uv4l raspicam driver (driver for the rasberryPi's camera CSI camera module) from here. After installation I have followed this discussion to remove the video preview when I use SimpleCV and to set up 640x480 as resolution. It works,…
cyberdyne
  • 426
  • 3
  • 5
  • 23
2
votes
1 answer

face detection two eyes overlapping

So I made a little script which tracks the face, then search for the two eyes, then for each eye, left and right. The problem is, even with left and right it overlaps both. i = Camera().getImage() face = i.findHaarFeatures("face.xml") if face !=…
f.rodrigues
  • 3,499
  • 6
  • 26
  • 62
2
votes
1 answer

SimpleCV not Importing Correctly

I just finished installing SimpleCV and all its dependencies, but am having trouble running it. If I just use this: import SimpleCV I don't get any errors, but when I try: from SimpleCV import Camera I get the error: ImportError: cannot import…
James
  • 2,233
  • 4
  • 20
  • 30
2
votes
4 answers

How to detect a black lake on a white snowy background in an aerial image?

Here is a sample aerial image: ![aerial image of some unfrozen lakes][1] How do I automatically detect and extract parameters of the black unfrozen lake from the image? I'm primarily using Python. EDIT: see my answer below; I think I've found the…
OkonX
  • 849
  • 1
  • 7
  • 10
2
votes
3 answers

Detect significantly distinct image from a set, such as with OpenCV or SimpleCV

I have still images captured over the course of one night by a webcam. The majority are identical, since the lighting in the images is uniform. However, some are significantly different from the rest - they have visible human movement through the…
Maxim Zaslavsky
  • 17,787
  • 30
  • 107
  • 173
1
vote
1 answer

How much python is necessary to use SimpleCV?

I have some python knowledge but I'd never consider myself particularly fluent in the language. I've a potential machine vision project in the works that would benefit greatly from SimpleCV but I'd rather not have to be hugely fluent in python in…
user777082
1
vote
1 answer

pygame install without root

I'm on a university machine so I have no root access and I'm trying to use the drawing libraries from SimpleCV. As it is I have pygame installed without font but the drawing functions appear to require that I have font available. With some googling…
KitB
  • 510
  • 2
  • 16
1
vote
2 answers

Color Transform in OpenCV or SimpleCV

I've looked at the documentation but I couldn't find if there was a method for transforming the colors for an entire image using some formula. Would this be somehow related to the color curve functions because I'm not too sure what effects those…
user1136342
  • 4,731
  • 10
  • 30
  • 40
1
vote
2 answers

Improve image recognition: plant green pixels

I'm using python and simpleCV to extract the number of green pixels of an image. In the end I'm doing some calculations to get the leaf area of a plant. My problem is that the quality of the pictures is sometimes not very high, resulting in not…
Ttam
  • 63
  • 1
  • 7
1
vote
0 answers

simplecv | How to save generated frames to video

This is the function which generates a set of frames from an input video and stores them in a folder. The full function: def new_dewarp(self): vidpath = self.iVidPath def isInROI(x, y, R1, R2, Cx, Cy): isInOuter = False …
Sapnesh Naik
  • 11,011
  • 7
  • 63
  • 98
1
vote
1 answer

unable to find vcvarsall,bat error while installing simplecv on windows 10?

During the installation phase, I get this, "Unable to find vcvarsall.bat" error. The installation process did complete, though. However, I was unable to see the shell on my desktop (I am using windows) and neither was I able to open it manually. I…
1 2
3
12 13