Ask Your Question

Ann162's profile - activity

2018-06-12 00:00:33 -0600 edited question Negative values in Mat to byte conversion in java ?

Negative values in Mat to byte conversion in java ? When i am converting mat to byte ,some bytes are negative is there a

2018-06-12 00:00:07 -0600 asked a question Negative values in Mat to byte conversion in java ?

Negative values in Mat to byte conversion in java ? When i am converting mat to byte ,some bytes are negative is there a

2018-06-10 16:49:12 -0600 asked a question can i get 8 bit from byte using opencv?

can i get 8 bit from byte using opencv? i have a byte array which i have obtained from mat of an image.is there some met

2018-06-07 06:18:53 -0600 commented answer Getting blank images when trying to construct image using byte array?

i checked it is unequal but the initial image of the byte array is of (440*442)size

2018-06-07 05:27:54 -0600 commented answer Getting blank images when trying to construct image using byte array?

The generated image has a gray strip on top

2018-06-07 05:10:26 -0600 commented answer Getting blank images when trying to construct image using byte array?

i have changed it.but i am still getting same blank images

2018-06-07 04:58:25 -0600 asked a question Getting blank images when trying to construct image using byte array?

Getting blank images when trying to construct image using byte array? I am using byte array to generate a grayscale png

2018-05-04 10:39:52 -0600 commented question Distorted size of image obtained after construction from byte value?

//1. Convert Image to byte code ImgDemo im = new ImgDemo(); String path = "C:\Users\domin\Desktop\Sop\p

2018-05-04 07:28:09 -0600 commented question Distorted size of image obtained after construction from byte value?

Now the image has changed into 8 bit depth still the same image is reconstructed.. Also when i am using Highgui.imdeco

2018-05-04 06:37:35 -0600 commented question Distorted size of image obtained after construction from byte value?

Can you give me an example as to how to make 3 channel conversion to single channel?

2018-05-04 04:47:40 -0600 commented question Distorted size of image obtained after construction from byte value?

I am extracting 8 bit binary value of each pixel and then applying random bit function to it and then changing it to byt

2018-05-04 04:04:18 -0600 edited question Distorted size of image obtained after construction from byte value?

Distorted size of image obtained after construction from byte value? I am using Mat img = new Mat(440, 442, CvType.CV

2018-05-04 04:01:52 -0600 commented question Distorted size of image obtained after construction from byte value?

i had a look into image properties details in which both the images has same high and width but the bit depth value is

2018-05-04 01:17:51 -0600 edited question Distorted size of image obtained after construction from byte value?

Distorted size of image obtained after construction from byte value? I am using Mat img = new Mat(440, 442, CvType.CV

2018-05-04 01:17:45 -0600 received badge  Editor (source)
2018-05-04 01:17:45 -0600 edited question Distorted size of image obtained after construction from byte value?

Distorted dimensions of image obtained after construction from byte value? I am using Mat img = new Mat(440, 442,

2018-05-04 01:17:08 -0600 asked a question Distorted size of image obtained after construction from byte value?

Distorted dimensions of image obtained after construction from byte value? I am using Mat img = new Mat(440, 442,

2018-05-04 00:53:15 -0600 received badge  Enthusiast
2018-05-01 23:52:37 -0600 commented question i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

imread doesnot return the byte array of the image,which is required for further processing.

2018-05-01 05:18:17 -0600 commented question i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

The image that i am getting using your solution is a noisy image.The input image i am taking is lena.png 256*256 graysca

2018-04-30 01:38:53 -0600 received badge  Supporter (source)
2018-04-30 01:38:51 -0600 marked best answer i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

I am using java to read an image and to generate its byte array on which few functions are performed ,now i want to obtain an image from this altered bytes.Is it possible in opencv.

2018-04-30 01:38:49 -0600 commented answer i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

ok sorry i didnt notice.Now its working thank you

2018-04-30 01:30:07 -0600 commented answer i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

Exception in thread "main" java.lang.UnsupportedOperationException: Provided data element number (35221) should be multi

2018-04-30 01:15:52 -0600 commented question i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

I have taken a gray-scale image and have read it using java .then have taken 8 bits for each pixel of the image.further

2018-04-30 01:12:46 -0600 commented question i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

I have taken a gray-scale image and have read it using java .then have taken 8 bits for each pixel of the image.further

2018-04-30 00:44:23 -0600 asked a question i want to generate a gray-scale image from byte array,is it possible to do it with opencv ?

i want to generate a gray-scale image from byte array,is it possible to do it with opencv ? I am using java to read an

2018-04-26 09:44:08 -0600 commented answer Are there any inbuild function similar to bitrevorder in opencv?

thank you working as required

2018-04-26 09:43:24 -0600 marked best answer Are there any inbuild function similar to bitrevorder in opencv?

I want to reverse the bits of grayscale images using opencv,is there any inbuilt function which can be used

2018-04-26 09:43:24 -0600 received badge  Scholar (source)
2018-04-26 05:43:13 -0600 commented question Are there any inbuild function similar to bitrevorder in opencv?

ok will look into it thank you.

2018-04-26 05:28:16 -0600 commented question Are there any inbuild function similar to bitrevorder in opencv?

i am trying to encrypt an image and it is the part of an algorithm that i am using.

2018-04-26 05:20:16 -0600 commented question Are there any inbuild function similar to bitrevorder in opencv?

i wish to reverse the bits of all the pixels of the image.for eg if the pixel value is 14 then then its binary would be

2018-04-26 04:36:22 -0600 asked a question Are there any inbuild function similar to bitrevorder in opencv?

Are there any inbuild function similar to bitrevorder in opencv? I want to reverse the bits of grayscale images using op