Tagged Questions
The iplimage tag has no wiki summary.
5
votes
4answers
436 views
Saving as Flash in C++
How to save an IPLImage of OpenCV as a Flash file? Maybe there is a library that does that?
5
votes
6answers
21k views
How to convert an 8-bit OpenCV IplImage* to a 32-bit IplImage*?
I need to convert an 8-bit IplImage to a 32-bits IplImage. Using documentation from all over the web I've tried the following things:
// general code
img2 = cvCreateImage(cvSize(img->width, ...
4
votes
2answers
18k views
How to convert a Mat variable type in an IplImage variable type in OpenCV 2.0?
I am trying to rotate an image in OpenCV.
I've used this code that I found here on StackOverflow
Mat source(img);
Point2f src_center(source.cols/2.0, source.rows/2.0);
Mat rot_mat = ...
3
votes
2answers
352 views
Opencv copy 3 channel IplImage to 4 channel IplImage
When I try to use cvCopy a IplImage consisting of 3 channels to a IplImage with 4 channels (I need the extra channel later) all I get is an error message.
Is there another way to increase the channel ...
3
votes
3answers
5k views
Convert RGB IplImage to 3 arrays
I need some C++/pointer help. When I create an RGB IplImage and I want to access i,j I use the following C++ class taken from: ...
2
votes
1answer
68 views
how to put an Iplimage on a picturebox?
is there a way to show an IplImage in a picturebox?
I'd like to not save the image and reload it into the picturebox since I need my program to be quiete fast.
I'm using opencv 2.1 in c++. I'm working ...
2
votes
3answers
855 views
Opencv… getting at the data in an IPLImage or CvMat
I am doing some simple programs with opencv in python. I want to write a few algorithms myself, so need to get at the 'raw' image data inside an image. I can't just do image[i,j] for example, how ...
2
votes
2answers
2k views
Python/OpenCV: Converting images taken from capture
I'm trying to convert images taken from a capture (webcam) and do some processing on them with OpenCV, but I'm having a difficult time..
When trying to convert the image to grayscale, the program ...
2
votes
1answer
1k views
DirectX and OpenCV
So i have a program written already that captures the image from a webcam, into a vector called pBuffer.
I can easily acess the RGB pixel information of each pixel, simply by ...
2
votes
3answers
4k views
How to convert an OpenCV IplImage to an SDL_Surface?
I'm trying to write a program which takes an SDL_Surface, converts it to an IplImage, uses the cvBlobsLib to find blobs, paints the blobs as spots back over the image, then converts the output ...
1
vote
2answers
142 views
Java: BufferedImage to IplImage
When i try to convert an BufferedImage to Iplimage i get an empty Iplimage. The conversion itself is done by a built in opencv function. My question is now. Why is it empty and how do i fix this ?
...
1
vote
1answer
62 views
How to convert IplImage(OpenCV) to ALLEGRO_BITMAP (A5) fast?
Is there a fastest way to convert a IplImage type from OpenCV to ALLEGRO_BITMAP type from Allegro 5.0.x than just putting every pixel from one to another?
Like 2 for loops like this:
void ...
1
vote
2answers
314 views
writing to IplImage imageData
I want to write data directly into the imageData array of an IplImage, but I can't find a lot of information on how it's formatted. One thing that's particularly troubling me is that, despite creating ...
1
vote
1answer
496 views
Gray UIImage - Gray IPlimage Conversion
I wanna transform a grayscaled iplimage into uiimage and viceversa. I have two methods like below that are successful in RGB colorspace conversion, But no success for Gray images.
- (UIImage ...
1
vote
3answers
423 views
IplImage 'None' error on CaptureFromFile() - Python 2.7.1 and OpenCV 2.2 WinXP
I am running Python2.7.1 and OpenCV 2.2 without problems in my WinXP laptop and wrote a tracking program that is working without a glitch. But for some strange reason I cannot get the same program to ...
1
vote
2answers
574 views
OpenCV - IplImage
What is IplImage in OpenCV? Can you just explain what is meant by it as a type? When should we use it?
Thanks.
1
vote
2answers
538 views
Boost asio: Send OpenCV IplImage from Ubuntu-Server to Win7-Client
I try to transmit an OpenCV IplImage from a Server (Ubuntu x64) to a Client (Win7 x64) using the boost asio library.
The following code works fine if both (Client and Server) are on the same ...
1
vote
2answers
1k views
Iphone Converting IplImage to UIImage and back causes rotation
I am using some code to convert between iplimage and uiimage. I take a photo taken from the camera (a UIImage) and convert it to an iplimage and back using the code posted below. Unfortunately this ...
1
vote
1answer
430 views
How to load a png image received through http post to OpenCV IplImage format
I am writing a webserver which receives an image and do some processing and replys with results.
The image is in the png format. It is received as a byte[] via POST using PHP. I have to convert this ...
0
votes
1answer
54 views
Select maximum from different planes
I want to get the maximum values from two images, while preserving other information.
For example, I have two images in HSL format, and I want the resulting image to consist of the brightest pixels. ...
0
votes
1answer
37 views
Return type as Array of IPlImage
I spend the whole morning today searching for a way to save an array of images in IplImage type in openCV and failed.
This is what I am trying to do :
IplImage* GetThresholdedImage(IplImage* img) {
...
0
votes
1answer
52 views
1 channel iplimage -> Android Bitmap
I need convert a 1-channel iplimage (gray) in an Android Bitmap. I have:
IplImage aux=IplImage.create(senal_gray.width, senal_gray.height, IPL_DEPTH_8U, 4);
cvCvtColor(senal_gray, aux, ...
0
votes
1answer
43 views
wrtite a string on IplImage, opencv c++
is it possible to write a string on a IplImage with Opencv 2.1 in c++?
thank you
0
votes
1answer
63 views
Convert IplImage to QByteArray
I need to send IplImages fetched from camera with UDP socket. I'm using Qt. The application has two parts. The server should fetch images from digital camera and send them to a specific port via upd ...
0
votes
1answer
87 views
Opencv : Conversion Mat to IplImage for cvLabel
I have
Mat *depthImage = new Mat(480, 640, CV_8UC1, Scalar::all(0));
And further in my code i do :
Mat image = *depthImage;
I do some opencv stuff with it and then i want to use cvBlob (so blob ...
0
votes
3answers
68 views
Error converting IplImage** to IplImage*
IplImage *img;
img = (IplImage **)malloc(IMAGE_NUM * sizeof(IplImage *));
for(index=0; index<IMAGE_NUM; index++){
sprintf(filename, "preproc/preproc%d.jpg", index);
img = ...
0
votes
1answer
154 views
OpenCV - Mat and setMouseCallback function
I a have a my_mouse_callback example function that works with IplImage*
void my_mouse_callback(int event, int x, int y, int flags, void* param)
{
IplImage* image = (IplImage*) param;
switch( event ) ...
0
votes
1answer
71 views
show detected face from IplImage to UIImage (iphone opencv)
I have a rectangle(x,y,width,height) represent a face in a image. The rectangle is got from opencv face detect algorithm. But I want to use a label to display in UIImage format.
The problem is the ...
0
votes
3answers
66 views
Storing/Extracting Objects to/from NSDictionary
I am getting errors using a NSDictionary when trying to assign it's contents to new variables/objects. Maybe this isn't posible? I thought it would be. I'm also not sure if I can use non-Objective C ...
0
votes
1answer
96 views
iPhone Programming converting IplImage coordinates to UIImage coordinates
I am making an application that shows the video feed in real time and I am processing the frames using OpenCV to detect faces present in them. To do this, I need to convert the frames into UIImage and ...
0
votes
2answers
272 views
greyscale Iplimage to android bitmap
I am using opencv to convert android bitmap to grescale by using opencv. below is the code i am using,
IplImage image = IplImage.create( bm.getWidth(), bm.getHeight(), IPL_DEPTH_8U, 4); ...
0
votes
2answers
187 views
Create a CvMat object from an IplImage
I am trying to create a bounding box around a feature in a binary image using OpenCV. I've read that if I create a CvRect object by passing a CvMat object as an argument to cvBoundingRect(), I can ...
0
votes
0answers
741 views
Convert IplImage to CvMat
Here is the gpu surf code:
#include <iostream>
#include <iomanip>
#include "opencv2/contrib/contrib.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
...
0
votes
1answer
274 views
python convert IplImage to Qimage
I am trying to process some videos using openCV and then put it inside pyqt Qimage...
I saw some examples to do that but they are all in C++ and I can understand python only,
Can anyone help me ...
0
votes
1answer
150 views
How to send IplImage from server to iPod client UIImage via TCP
I have a server in linux using the Berkeley_sockets and I create a TCP connection with an iPod client. I have an IplImage* img; to send from the server to the iPod. I use the ...
0
votes
1answer
433 views
OpenCV - Type 'IplImage' could not be resolved
I have set up Eclipse to work with OpenCV 2.1.
When I try a simple program, I get the following error:
Type 'IplImage' could not be resolved
For the following line:
IplImage* img = 0;
How ...
0
votes
0answers
33 views
“QImage with no type” compile error message
Hello Can anyone help me figure out how to solve this bug message? I am trying to rewrite a Qt3 working code into Qt4 for converting IplImage to QImage and found the "right conversion types" however ...
0
votes
1answer
187 views
How to transform an IplImage into a char array
I wanted to know if it's possible, and if so, how to transform an IplImage to a char array in C (or C++).
thks
0
votes
3answers
268 views
OpenCV IplImage data to float
Is there a way to convert IplImage pointer to float pointer? Basically converting the imagedata to float.
Appreciate any help on this.
0
votes
1answer
211 views
Create gray IplImage from gray UIImage
I'm a trying to create a gray IplImage from a gray scaled UIImage and Im using the method below.
- (IplImage *)createGrayIplImageFromUIImage:(UIImage *)image {
CGImageRef imageRef = [image ...
0
votes
3answers
1k views
Convert Mat to IplImage* in OpenCV and C/C++
in my application I have a Mat file which i'd like to show in a window with cvShowImage which is defined as:
void cvShowImage( const char* name, const CvArr* image )
Now, the problem is that if i ...
0
votes
1answer
404 views
Sending a IplImage through a socket with JavaCV
I'd like to send IplImages acquired with JavaCV and a webcam through a socket, but, since they are not serializable, i'm quite lost. Any idea on how to do it?
Thanks
0
votes
1answer
611 views
opencv IplImage to CvMat null values
I'm trying to implement a Lucas Kanade algorithm for motion tracking of a template image.
In my code at some point i have to multiply some images with some matrices, so what i do is that i copy the ...
0
votes
3answers
186 views
OpenCv fill pixel of onechannel image and show it
I wanna fill a black and white image and show it.
I can't understand what's the metter with this code:
IplImage * imageOut;
int window = 100;
cvNamedWindow("mappa", CV_WINDOW_AUTOSIZE );
imageOut = ...
0
votes
2answers
403 views
Accessing IplImage element of type IPL_DEPTH_16S in OpenCV
I know that for a single channel byte image you do:
((uchar *)(img->imageData + i*img->widthStep))[j]
and for a single channel float image, you do:
((float*)(img->imageData + ...
0
votes
2answers
594 views
Compressing IplImage to JPEG using libjpeg in OpenCV
So I have this problem. I have an IplImage that i want to compress to JPEG and do something with it. I use libjpeg8b.The code exit when it goes the function of jpeg_start_compress() with an error of ...
0
votes
1answer
263 views
Cannot see IplImage in QGraphicsView
I'm trying to display a 3D scene(OpenGL-OpenCV) in a QGraphicsView object in QT. The scene has 5 planes: top, bottom, right, left and front. I'm taking images from my webcam and mapping them to the ...
0
votes
0answers
162 views
Defining a UIImageView with frame from AVFoundation
I am converting each frame from a sample buffer using AVCaptureVideoDataOutputSampleBufferDelegate i am converting this to first a openCV iplImage, then converting the color of that the HSV, then ...
0
votes
1answer
428 views
OpenCV's IplImage* as function parametr error
I am using OpenCV library and I want to clone picture in separate function, but I cannot send address to the function
IplImage* image = cvLoadImage( path, CV_LOAD_IMAGE_GRAYSCALE ); // loading is ok
...