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

Image stitching SimpleCV: colorspace changes after warping

I am using SimpleCV to stitch images. I have made some changes in SimpleCV's GitHub code and eventually got the image transformed correctly. But the problem is, the color of the image after getting transformed is changed. I have used these images…
Rishi
  • 1,987
  • 6
  • 32
  • 49
4
votes
5 answers

opencv getImage() error

I wrapped opencv today with simplecv python interface. After going through the official SimpleCV Cookbook I was able to successfully Load, Save, and Manipulate images. Thus, I know the library is being loaded properly. However, under the Using a…
Jordan Arsenault
  • 7,100
  • 8
  • 53
  • 96
4
votes
1 answer

How to install scikit-image? (Windows - Python 3.4)

I am working on a program that can identify objects, part of a much larger project for school. I have managed to convert these objects into white blobs on a black background, and need a way of detecting blobs (more than just one at a time) and…
Matthew Winfield
  • 827
  • 4
  • 10
  • 25
4
votes
1 answer

OpenCV FloodFill with multiple seeds

Is there a floodFill function for python/openCV that takes a list of seeds and starts changing the color of its neighbours? I know that simplecv as a function like that SimpleCV floodFill. OpenCV says it has two floodFill functions when that uses a…
João Abrantes
  • 4,772
  • 4
  • 35
  • 71
4
votes
1 answer

MacOSX python error on import

Ive recently installed SimpleCV using the osX-Lion setup instructions in page https://github.com/ingenuitas/simplecv Then I type python in Terminal and when I try the following I get an error. import SimpleCV Fatal Python error: (pygame parachute)…
dramaticlook
  • 653
  • 1
  • 12
  • 39
4
votes
2 answers

OpenCV Error: Bad argument (Array should be CvMat or IplImage) file C:\slave\WinInstallerMegaPack\src\opencv\modules\core\src\array.cpp, line 1238

Just installed SimpleCV Version 1.3 Superpack (Python 2.7) and trying the Hello Word application from Practical Computer Vision with SimpleCV from SimpleCV import Camera, Display, Image import time # Initialize the camera cam = Camera() #…
Superdooperhero
  • 7,584
  • 19
  • 83
  • 138
4
votes
1 answer

SimpleCV side by side view and sift features

Since I'm a beginner to SimpleCV, can somebody please guide me with the following application: The thing is that I'm working on a stereo project. I have two images, from left and right eyes. First: I must display them side by side. (After using…
dramaticlook
  • 653
  • 1
  • 12
  • 39
3
votes
1 answer

Python opencv not receiving camera feed

I've been trying to use the SimpleCV (www.simplecv.org) module to run image recognition and manipulation. Unfortunately, my incoming video feed has been quite finicky, and I'm not sure what I did wrong. Just using some basic sample code: import…
Doc Sohl
  • 165
  • 1
  • 1
  • 10
3
votes
0 answers

Template Matching Rotation Invariant OpenCV/SimpleCV

I'm trying to find a way to work with a rotation invariant template matching. I can actually detect my objets, calculate the angle and rotate them so they are in the same orientation as the template (I took a capture of the template alone, in…
Fosheus Badabu
  • 351
  • 1
  • 3
  • 10
3
votes
1 answer

fatal python error: (pygame parachute) Segmentation Fault

I am fairly new to both the raspberry pi and python. I have written a code to analyze an image, but I keep getting fatal python error: (pygame parachute) Segmentation Fault. It usually occurs between 15 minutes and an hour into my program. From…
maddmaxamofo
  • 41
  • 1
  • 6
3
votes
1 answer

SimpleCV car detection example

So... working through the book Practical Computer Vision with SimpleCV, Chapter 5 - same example as in the online tutorial here. Got a very different value for the mean color of the yellow car, so I went back through the example code, inserted…
memilanuk
  • 3,522
  • 6
  • 33
  • 39
3
votes
1 answer

Processing images with Watchdog in Python

I'm using the watchdog library to detect when new images are created in a specific folder. When watchdog detects a newly created image, I kick off some image processing functions with SimpleCV / OpenCV. However, the pictures are being taken from a…
Anconia
  • 3,888
  • 6
  • 36
  • 65
2
votes
1 answer

simpleCV and Raspberry Pi: no module named simplecv

No module named SimpleCv I installed simplecv on my RPi using the tutorial link: http://simplecv.readthedocs.io/en/latest/HOWTO-Install%20on%20RaspberryPi.html and installed svgwrite. I have the simplecv working alone, but when running a python file…
Ben Cobley
  • 41
  • 2
2
votes
1 answer

How do I get the values of pixels in a certain area?

so since I am relatively new to programming I would need a little help with that problem. I am using SimpleCV with Python 2.7 on a Windows Computer. What I am trying to do is to get a (selfwritten) program to tell me the values of the pixels along…
Jennan
  • 89
  • 11
2
votes
3 answers

Is there a version of SimpleCV to install with Python 3.5?

I just installed SimpleCV Version 1.3 Superpack and it installs Python 2.7 and all the libraries included. I tried to run it, got this error Traceback (most recent call last): File "G:\images.py", line 1, in module from SimpleCV import Camera …
Mr Mohamed
  • 454
  • 5
  • 12
1
2
3
12 13