1
vote
1answer
50 views

I have a dot bouncing around an image. Need to calculate angles of reflection off of groups of pixels (surface of objects)

Suppose we have an image (pixel buffer) that is in black and white, so each pixel is either black or white (not gray scale). Now somewhere in the middle of that images, place a green dot. It may have ...
2
votes
2answers
77 views

Convert BMP into grayscale issue

I started messing around with image processing and wanted to know if there is a way to make a gray scale image without using image processing libraries, I know the first three bits are given the ...
0
votes
1answer
40 views

Looking for a working example of FFT convolution with Intel IPP

Just trying to wrap my head around IPP right now. Does anyone have any working C/C++ code for doing a FFT convolution on an image?
0
votes
0answers
41 views

Saving specific image using opencv

I have to take images from my still camera (webcam) and checking whether vehicle is in image or not , but i think it take much memory , so i think i only save the image in which i have vehicle in the ...
-2
votes
0answers
31 views

split and merge Image segmentation C implementation? [closed]

Is there an implementation for the split and merge method of image segmentation in C not C++ or C#? like is showed in this link ...
0
votes
1answer
48 views

How to get Image matrix of an image using libjpeg

Does any function in libjpeg outputs an image matrix just like imread does in matlab?
0
votes
1answer
60 views

Moving window implementation

So, I have to implement an algorithm of Constant False Alarm Rate(CFAR). It kind of works like this: I am using the notion that, in case that the target window contains more than one pixels, this ...
-3
votes
1answer
74 views

Decode image sent to Arduino using TTL camera? [closed]

I'm new to embedded systems, working on a project. The project description is: "TTL camera over Arduino UNO must capture an image and send it compressed to a board as bytes". I need to decompress it ...
0
votes
0answers
90 views

Image pixel scaling error - calculating SNR of CCD lens

I am trying to calculate the signal to noise ratio of two loaded images taken from the same digital camera. The idea is to calculate the signal to noise at numerous light levels to achieve a graph ...
-1
votes
2answers
150 views

Get the RGB value of each pixel from bmp file

So I have a bmp file, and I want to extract the details of rgb for every pixel of the image. I read somewhere that the following would do this for me int main(){ int image[100][3]; // first number ...
0
votes
0answers
31 views

libpng how to load images despite format

I need to know what kind of transformations shall I use to load all types of png (RGB, RGBA, ARGB, Indexed, Gray, etc.) into format RGBA to compare that images pixel by pixel (images has same width ...
5
votes
1answer
114 views

Auto white balancing for camera

I am developing a sample camera and I am able to control image sensor directly. The sensors gives out Bayer image and I need to do show images as live view. I looked at debayering codes and also ...
0
votes
1answer
56 views

Linear algorithm to fill a contour

I am trying to make an algorithm that will fill a contour in linear complexity. I know such an algorithm exists. I've read somewhere that it has to do with the number of crossings, but there is a ...
1
vote
1answer
142 views

Face detection using opencv

I am using haarcascade_frontalface_default cascade for face detection using Viola Jones Object Detector. Can anyone suggest any other method/xml file to increase the range (unto 20ft) (maximum ...
0
votes
1answer
98 views

simple way of generating shapes

I want to generate shapes like the one following (image file e.g. PNG): I'm looking for a c / c++ library which will allow me to realize the following algorithm: The basic algorithm would be: ...
1
vote
1answer
143 views

Steganography in C

Trying to do basic Steganography on a PPM Image. I have the basic algorithm completed. Read in the file, check the header starts with P6, get the image width and height, and the pixel data. I need ...
0
votes
0answers
158 views

Image filtering in the frequency domain with magnitude (not matlab)

I'm trying to do a blur on some image by applying DFT(fourier), calculating the magnitude and phase part and finally taking a filter image that it's just a white blurred circle in the middle of black ...
0
votes
1answer
44 views

Populate a list of cvHistogram pixel by pixel

I have an image, and a function int getRegion(int x,int y) That gives me a unique identifier to which component a pixel belongs to. class Component { int Identifier; CvHistogram* hist; } ...
0
votes
2answers
142 views

Downsample an Image

I'm trying to downsample an image by 2, the image i assumed that it is greyscale, so I will work only with one channel, I tried to average 4 pixels, then put the resultant in the destImage. I don't ...
0
votes
1answer
44 views

How do I rotate values in a cvMat?

I am making a steerable derivative line filter. I want to be able to rotate it by an arbitrary angle. The desired situation will be the following: cvMat myMat; contains: 0, 0, 0 0, 0, 1 0, 0, 0 ...
1
vote
1answer
211 views

processing .raw file image with ffmpeg api or C code

I am trying to process a .raw image file captured using vrl2, it's a h264 encoded image with yuv422 color space from a Logitech c920 webcam, dcraw is not working for me however from my previous ...
0
votes
2answers
83 views

Data races when using mutexes

I'm working on a small project in C involving threads and mutexes. The program i'm working on applies filters on bmp mages. The goal of the project is to implement a program capable of handling this ...
0
votes
1answer
115 views

cvFindContours is not producing the output I expect

I have a simple, contrived example of finding connected components on a binary image using cvFindContours with the OpenCV C API. (This is part of a larger piece of software written in C, so using the ...
4
votes
1answer
110 views

Rotating Several points inside rectangle

I want to write a C program to rotate the points inside a rectangle. In my program, the rectangle center is the pivot point and the rectangle dimensions are 320x480. Assuming one of the vertices of ...
2
votes
0answers
52 views

High NFIQ computation time in ARMV7

i have compiled and run the NIST NFIQ in linux as well as ARMV7. NFIQ Computation in linux took less than 300 millisecond only while in ARMV7 it is 1930 millisecond. i also search in NIST but i cannot ...
1
vote
1answer
369 views

Processing .Raw images using ffmpeg or OpenCV

After reading Wikipedia page of Raw image format which is the digital negative of any image. To be viewed or printed, the output from a camera's image sensor has to be processed, that is, ...
1
vote
1answer
73 views

Store extracted frame name inside an array - ffmpeg

I'm a complete newbie to C. I'm from PHP background, but it so happens that the code that I wrote in PHP needs to be converted to C. It was Java at first, but now the requirement is C. After going ...
0
votes
2answers
143 views

opencv “C” methods in Opencv SDK for Android

I have downloaded opencv2.4.2 Android SDK for Android development. I need to convert some Opencv "C" code to android-opencv. But I coulnd find any "C" functions in android-opencv. I could see only ...
0
votes
2answers
79 views

binary file bit manipuation

I have a binary file of image data where each pixel is exactly 4 bits. Image data is laid out as follow: There a N images where the first image is 1x1, the second image is 2x2, the third is 4x4, and ...
0
votes
0answers
59 views

each new frame from cam opens in new window. how to fix it [closed]

the problem is that each new frame is opened in new window .so for a live cam feed it continuously opens new window. if i comment the cv::findContours( contourOutput, contours, CV_RETR_LIST, ...
0
votes
2answers
91 views

Writing buffer contents to a file

If I have a buffer in memory, which contains an image in YUV format, how can I save the buffer contents to a file, i.e., what file format should I use, and can I view the file later in an image ...
2
votes
2answers
91 views

Negative transformation of an image in C

#include <stdio.h> #include <conio.h> #include <stdlib.h> #include <process.h> #include <string.h> #include <math.h> int count = 0; typedef struct bitmap24 { ...
0
votes
0answers
224 views

Motion Templates OpenCV Example

I have been working on the sample code in OpenCV samples on motion templates. #include "opencv2/video/tracking.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc_c.h" ...
0
votes
0answers
68 views

Getting a slanting image after saving bmp image in C [closed]

I am actually reading and then saving the same image. fwrite(info, sizeof(unsigned char), 54, f1); this stores the 54 byte header in the file. Then I have to copy the RGB values to the file for(i = ...
0
votes
1answer
189 views

How to mapping a 1d array to a 2d array in C?

I am trying to map the RGB pixels of an image to 2D arrays of R, G, B seperately. When the image is read the pixels are stored in a 1D array in the form {r1,g1,b1,r2,g2,b2...}. The length of array is ...
3
votes
1answer
91 views

Determine difference in stops between images with no EXIF data

I have a set of images of the same scene but shot with different exposures. These images have no EXIF data so there is no way to extract useful info like f-stop, shutter speed etc. What I'm trying ...
0
votes
1answer
76 views

Build opencv exe in one machine and run in another which has no opencv installed?

I am developing an OpenCV application in linux machine with Netbeans IDE. I need to run the same application in another machine where opencv is not installed in it. Is it possible to do it? Or the ...
0
votes
2answers
76 views

not able to save an image file using c?

I tried to clone a bmp image into another bmp image but the final image would not open. #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <process.h> void ...
2
votes
2answers
146 views

Bitmap rendering methodology in OpenGL?

I've been working on a bit of a bitmap parser lately in pure C just to understand the low level workings of simpler image formats. So far, using Wikipedia's article on bitmap files, I've been able to ...
0
votes
1answer
79 views

Unknown way of reading int with masking

I try to work around the various limitations of Android, but I am quite puzzled how to interpret the following code static bool read_mbf(SkStream* stream, int* value) { int n = 0; uint8_t ...
0
votes
1answer
187 views

How to add Fish eye Image FIlter on UIImage in iPhone SDK without using GPUImage

I want to add some filter effect on UIImage in my iPhone App. These filters are: 1. Fish eye Filter effect. 2. Crystallize Image effect (Same as Mosiac effect tiles in Hexagone Shape) 3. TV Image ...
1
vote
2answers
319 views

How install header files for opencv in C in my ubuntu 11.10

Resently I'm installed Opencv in my machine. Its working in python well(I just checked it by some eg programs). But due to the lack of tutorials in python I decided to move to c. I just run an Hello ...
0
votes
3answers
85 views

OpenCV - C library is not working in my Ubuntu11.10

Resently I'm installed Opencv in my machine. Its working in python well(I just checked it by some eg programs). But due to the lack of tutorials in python I decided to move to c. I just run an Hello ...
-2
votes
2answers
263 views

Converting RGB image to YUV using C programming

I have images as bitmap and JPEG. I will have to retrieve the pixels from the image there by RGB values of all pixels are obtained. Please suggest a method where RGB values are retrieved from an image ...
0
votes
1answer
198 views

FFT and convolution

Im writing for school 2dFFT using on image filtering. And I have problem with filter matrix. I made my fft so it accepts 2^n input, and all filter matrix are odd numbers. So I need solution to ...
1
vote
0answers
114 views

Android solution to save multiple photos in a single file: .mpo

I am developing an Android application where I need to save multiple photos in a single file. I want to use the multiple picture format .mpo. I checked in Android documentation as well as in OpenCV (I ...
2
votes
1answer
143 views

Couldn't find the error in my DCT / IDCT code

I'm doing DCT/IDCT on a 512 * 512 raw image, But my program could output a image which has only PSNR 17.54db, I've check my formula for several times, could someone help me about this? This is ...
0
votes
1answer
153 views

Acess DCT coefficients and Quantization values with libJPEG

I am reading a bitmap file and compressing it into a JPEG file using the libJPEG library, simple enough. But now I would like to write each of the intermediate stages, ie DCT and Quantization to a ...
-2
votes
1answer
292 views

OpenCV - get grey value from an image

Hello everybody right now I'm trying to getting grey value for every pixel in an image what I mean with grey value is the white or black level from an image let's say 0 for white and 1 for black. for ...
1
vote
2answers
464 views

copying ipl image pixel by pixel

The problem is solved....I used cvGet2D,below is the sample code CvScalar s; s=cvGet2D(src_Image,pixel[i].x,pixel[i].y); cvSet2D(dst_Image,pixel[i].x,pixel[i].y,s); ...

1 2 3 4 5 6