TonemapDurand on grayscale images segfaults
I am trying to improve the local contrast of a regular 8-bit gray scale image using tone mapping. I test with the example code...
View ArticleCamshift Algorithm and Grayscaled Images
I was wondering whether we could use Camshift with non-HSV images, as every solution on internet simply convert the image into HSV space, single out the H channel and then go further. However, I am...
View Article16bit raw file stream analysis
Hi, I would like to analyse binary stream data. Data is 16-bit binary stream of 256x256 grayscale images with 256 bytes gaps stored in one long stream file. This is effectively video. Can you give me...
View ArticleHow to filter a long and thin rectangle in a grayscale image?
Hi, I have grayscale images in which I need to filter a long and thin rectangle. My images are looking like this: [image](http://www.bilder-upload.eu/show.php?file=31c480-1438763261.jpg "title")...
View Articleget few pixels value of grayscale image with android API
Hi men, first of all sorry for my bad englisjh. I need to use a few pixels value of a grayscale image, i've searched everywhere on the web and have understood how read the pixel value but cannot...
View ArticleHow to convert detected mouth region in gray-scale and binary in android ?
Here is my code, i am not able to covert the mouth region into grayscale please help me...i have tried everything available on internet Mat innerWindow = mRgba.submat(moutharea);...
View ArticleWhy should an RGB image be converted to grayscale for carrying out...
I am new and naive to OpenCV and image processing. I have an image which is of RGB standard. Why should I convert it grayscale in order to detect blur or apply laplacian operator? Really appreciate...
View ArticleMemory error accessing grayscale pixel data
Hi all, Somewhat of a simple question, but haven't found the answer from searching around. I'm trying to work with direct pixel data, and am having trouble figuring out what determines the size of the...
View ArticleNormalizing Sobel Filter Noise
I'm writing my own sobel filter and am having trouble getting it to run properly. I'm applying a vertical and horizontal convolution to a grayscale image, which appear to have *some* result when...
View ArticleHow to capture in GRAYSCALE directly from source
I'm capturing web cam using open cv and I'd like to get direct Grayscale image from source. Below shows a sample code that I'm using for capturing video feed. Found this reference however cant see any...
View Articleconvert the RGB image to a grayscale representation of its redness
Hi mate , I need RGB-->Grayscale_redness image that is to convert the more a pixel appears as red in the RGB image, the brighter it will be in the converted image.More specifically, it performs an...
View Articleresize,grayscale and equalized necessary?
http://docs.opencv.org/2.4/modules/contrib/doc/facerec/tutorial/facerec_video_recognition.html This reads frames from webcam and checks against csv database and images stored in a directory. So to...
View ArticleAccessing Pixel Values of RAW 8 image
Hi all, Im using XIMEA camera and I am capturing RAW 8 images using OpenCV 3.1.0. Therefore my images are in gray scale. Ive read a lot in forums about how to access pixel values. When I use the...
View Article[SOLVED] putText - result is always black text
Hello, I have a Matrix of type CV_16UC1 which holds 16bit grayscale pixel data from an external camera. I want to use putText to draw WHITE text over the image. But regardless which of the following...
View ArticleCV_8UC3 returns grayscale
Excuse me, I'm new to opencv. I learned about CV_8UC3 that it defines an image in 8 bit unsigned integers using 3 channels (BGR). When a color image is loaded using this constant as parameter, cv::Mat...
View ArticleDifferent results between imread as grayscale and cvtColor
Did anyone notice that if you load a color image directly as gray scale, the resulting image is slightly different than loading it to a color image and then cvtColor to grayscale? Anyone know why?...
View ArticleResult of CLAHE is different on 8 and 16 bit grayscale image
Hi, I have got a remark, problem with CLAHE algorithm on applying 8 bit and 16 bit grayscale image. I use opencv-master build. So if i applying CLAHE algorithm on 8 bit grayscale image (CV_8UC1), the...
View ArticleBetter character isolation
Hi, I am trying to process an image, and extract the characters from it. Please see the following link for current work in progress: http://imgur.com/a/FfqwJ At the moment, these are the steps I have...
View ArticleHow do i convert a Grayscale video to a Tensor?
I have written a code which converts a RGB video to Grayscale and **now I want to convert it to a tensor.** I just gave `cout< #include #include using namespace cv; using namespace std; int...
View ArticleConnectedComponents-like function for grayscale image
I'm looking for help, because I wasn't successful finding a function in OpenCV that is able to perform a labelling of connected components on a grayscale image. **Input:** The input image is an image...
View Article