0
votes
1answer
12 views

When using Photoshop/GIMP is it better to color->alpha and then resize, or vice versa?

I was making a circular icon with semi-transparency, so I started with a large filled-in circle with a black border, then I did white->alpha, and resized the image to my required size. Would it have ...
1
vote
0answers
23 views

Matlab SVM for Image Classification

I am using SVM function of Matlab to classify images that are read from a folder. What I want to do is first read 20 images from the folder, then use these to train the SVM, and then give a new image ...
3
votes
3answers
65 views

when to resize an image?

I am building a online store for hand made jewelry. Of course there is a lot of high quality pictures that i need to show, first in small sizes and when a client clicks on the image, than redirect him ...
0
votes
1answer
30 views

OpenCV: Reading image series from a folder

I am trying to read a series of images from a folder using OpenCV's VideoCapture function. After some search on the internet, my current code is like this: cv::VideoCapture cap ( ...
0
votes
1answer
35 views

how to change the pixel values in a rgb image in matlab

I have a rgb image, I want to change the pixel values greater than (r:175,g:255,b:55) to Nan in matlab, How can I do that. Please let me know
5
votes
2answers
107 views

Algorithm for finding visually similar photos from a database?

TinEye, Google and others offer a "reverse image search" -- you can upload a photo and within seconds it will find similar photos. Is there an open-source version of these algorithms? I know about ...
-1
votes
0answers
26 views

Image quality option for thumbnails creation

I'm trying to find a way to put image quality option at this code but i'm really stack. I need a parameter to reduce the thumbnail image quality on this code Image::makeThumb($new_path, 600, 0, ...
0
votes
0answers
32 views

Chromatic aberration in C#/Python [closed]

I recently stumbled across the chromatic aberration effect. I really like this effect, but I didn't find any ways to produce it without OpenGL (I just found some rough explanations of how to do it in ...
0
votes
3answers
38 views

OpenCV: Understanding Kernel

My book says this about the Image Kernel concept in OpenCV When a computation is done over a pixel neighborhood, it is common to represent this with a kernel matrix. This kernel describes how ...
-1
votes
2answers
49 views

Understanding OpenCV Image Smoothing

This question is about this tutorial http://docs.opencv.org/doc/tutorials/imgproc/gausian_median_blur_bilateral_filter/gausian_median_blur_bilateral_filter.html#smoothing In that code, all the ...
-1
votes
0answers
35 views

Cylindrical panorama in matlab [closed]

I'm trying to do a cylindrical panorama. First of all I've done a cylindrical projection, using the inverse projection described in this page. The second step was to align the images. Using normal ...
0
votes
2answers
35 views

Changing brightness and contrast of an image

Please have a look at the following code #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <iostream> using namespace std; using namespace cv; Mat ...
1
vote
1answer
37 views

Function to map an image to 3D point by point

I am trying to map my image point by point to 3 dimensional space. For example, if my original image has intensity of 100 at location X, I want to plot this point in 3D location Y with intensity of ...
0
votes
1answer
22 views

Downsample chrominance components of images using matlab

I want to decompose an image to Y,Cb,Cr components and then to perform downsampling in YCbCr domain to form the 4:2:2 format. Code for decomposition of the image to YCbCr: img=imread('flowers.tif'); ...
0
votes
0answers
31 views

How to find more than one matching pattern using Normalized Correalation

I'm using normxcorr2 to find the area that exactly match with my pattern and i also want to find the other area(in the red rectangle) that is look like the pattern. I think it will be works if i can ...
2
votes
2answers
66 views

PHP (?): Determing a photo's colour, ignoring the background

I don't know what the best technology to use here is, I know PHP can do vaguely similar things but point me in the right direction if I'm wrong. I'm building an online store and I'd like an easy ...
2
votes
1answer
39 views

How to draw a line with changing intensity/grayscale

If I have matrix/data with line intensity values: e.g. 0, 1, 2, 3, 4, 5, ..... M (where intensity value is gradually changing) or any random order of values So if I use the first intensity set of ...
0
votes
1answer
45 views

C# image save dots

I don't know that i'm doing wrong, I have been looking around the web, and tried a lot of different things but nothing works, when i try to save the image there is a lot of gray dots the result can ...
2
votes
1answer
25 views

Pre-trim PNG image to alpha and get offsets

I have a set of images, all with the same size, saved in PNG format. Later, in my program, I'll use these images and superimpose them on top of each other. However the non-transparent part of each ...
0
votes
1answer
18 views

Compression BMP to TGA issue

I'm new in .net development, so, may be my question is simple. I need to compress BMP to TGA and decompress TGA to BMP using C#. How can I implement that?
0
votes
1answer
33 views

Comparing images from UI perspective

I am trying to create a C# windows application which would compare two images from the UI perspective. For example, consider following two images: iPhone5 screen shot (original: 640 X 1136) ...
0
votes
0answers
16 views

Does sprite disposition affects rendering performance?

In my application I have some very big sprites and have to decide between horizontal or vertical sprites. I've read that horizontal sprites are smaller in file size, but I wonder if one of them would ...
0
votes
1answer
49 views

Is it possible to convert a edge detection output to binary image OpenCV

I am trying to convert a text document to a binary image by first detecting its edges and then converting it to a binary image based on output of edge detection. Can someone help me in this regard. ...
0
votes
0answers
36 views

send image to web php page using c sharp

I have created a windows mobile code to send an image that exist in picturebox after it was taken from a previous step (Camera), I have used this code: request.ContentType = ...
0
votes
1answer
48 views

opencv setting submat of Mat to another Mat

I am having problems using the setTo() method. My code is as follows: ArrayList<Mat> someImagesOfSameSize = new ArrayList<Mat>; someImagesOfSameSize.add(img1); ...
-2
votes
0answers
50 views

The algorithm for convert 16-bit and 32-bit color bitmap picture to grayscale? [closed]

How I can convert 16-bit and 32-bit color bitmap picture to grayscale? I think 32-bit is like 24-bit but we must change only 3 first bytes from 4 bytes. But I can't do this for 16-bit image.
0
votes
2answers
44 views

ImageJ Overlay ROI zoom

Using ImageJ I would like to create a Zoom function for a ROI at a given location. so far I have something like this: imp = IJ.getImage(); ip = imp.getProcessor(); //fill pixel array with ROI pixels ...
0
votes
0answers
46 views

Why does ToolkitImage getBufferedImage() return a null?

I want to convert an Image to a BufferedImage. I know the following: Image tmp; ... //read, scale BufferedImage buffered = new BufferedImage(SMALL_SIZE, SMALL_SIZE, ...
0
votes
1answer
48 views

Clear text from binary Image OpenCV [closed]

I am trying to reduce noise from a document and convert it to a binary image.I have almost cleaned the image but the characters are still not clear.Can someone please have a look at the image and ...
0
votes
1answer
60 views

Adjust image saturation by color type

I have the following method, which takes an array of pixel data, and then adjusts the saturation to this.adjustmentAmount currently it works! But I want to take it further by only adjusting the ...
0
votes
2answers
56 views

Scale a BufferedImage the fastest and easiest way

The task: I have some images, I scale them down, and join them to one image. But I have a little problem with the implementation: The concrete problem: I want to resize/scale a BufferedImage. The ...
0
votes
1answer
62 views

Plot histogram(change axis)

I have n*2 matrix for example matrix A.First column is some index and the second one is the histogram.I want to visualise only the nonzero histogram,so, I filtered A and deleted the index with ...
0
votes
1answer
62 views

Show image differences by rectangles

I am newbie to Image processing. So I might be asking a noob question here. I am on VS2010, .Net 4, Windows application. I want to show the differences between two images by rectangles (or any other ...
0
votes
1answer
43 views

Using image data from warp/surf Image mapping function

So my previous was Mapping image into cylinder or sphere shape? I was able to map an image into sphere or cylinder shape by using warp function. But now, how do I retrieve or use the mapped image? My ...
0
votes
0answers
25 views

Automatic color correction in AS3

I want to color correct a foreground bitmap image so that it 'fits' with a background bitmap image. I am not sure whether this is possible automatically. Basically I want the reds in the foreground ...
1
vote
3answers
74 views

Is there a way to identify if two images are nearly identical in Objective-C?

Say you have two images: and These pictures are nearly identical save for a few pixels that are different colors. Is there a native way in Objective-C to identify if two pictures are nearly ...
0
votes
1answer
44 views

How can I load a bitmap image and manipulate individual pixels?

I want to load a single large bitmap image from a file, run a function that manipulates individual pixels and then re save the bitmap. File formats can be either PNG or BMP, and the manipulating ...
5
votes
2answers
87 views

Mapping image into cylinder or sphere shape?

So lets say I have black & white image that is read with imread() command and saved into matrix A. I want to output/graph this matrix A image in a cylinder shape. I know how to draw a cylinder in ...
0
votes
1answer
32 views

how to change the color of one portion of an image to another portion of the same image using MATLAB

I have a color image. The image consists of an object which has a shadow. I have removed the shadow but the shadow portion's color is not similar with the background color .Now how can I match the ...
0
votes
1answer
15 views

PHP image output suddenly stopped working

I have a file that manipulates images before they are output to the browser. Here is the code: <?php require_once($_SERVER["DOCUMENT_ROOT"].'/_content/_constants.php'); ...
0
votes
0answers
37 views

Image cropping with arbitrary shape

I need to crop an image with any arbitrary shape rather than using square or oval shape. Is it possible in php or javascript ? I've tries some JS libraries but failed to get the exact outcome that I ...
1
vote
2answers
56 views

Junction point in image skeleton

What is the meaning of a junction point in image skeleton ? I am using opencv and c++ to develop a code source to detect the main local junction point in the image .Many thanks in advace .
3
votes
1answer
52 views

Why a set android Image disappears?

I'm trying to post an image captured from Camera , i'm using following code Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(i, REQ_CODE_PHOTO_TAKE); inside ...
0
votes
2answers
31 views

Interpret the content of the UI as a image

I am developing an application which is talking to a legacy application. My application must be able to know the status of the legacy application, and able to read the signs in the lower right corner ...
0
votes
0answers
46 views

Reduce image size after converting to tiff image with compression type

public boolean convertToTiff(File tiffFile, BufferedImage image) { ImageOutputStream ios = null; ImageWriter writer = null; try { // find an appropriate writer ...
0
votes
2answers
50 views

Image size increases

Using below code to upload an image. ByteArrayOutputStream baos = new ByteArrayOutputStream(); BufferedImage img = ImageIO.read(new File("abc.tiff")); ImageIO.write(img, "tiff", baos); img.flush(); ...
0
votes
0answers
47 views

When I load an image in my application, it shows DECODE RETURNED FALSE and unable to acquire memory

Some images in my database work fine, and these images were also working comfortably before. I dont know why they do not work now, and when I upload a new image it works fine. Here is my problem log: ...
0
votes
0answers
39 views

Decrease image size using BufferedImage

I want to crop an image for that I first convert tiff to jpg using bufferredImage below is the snippet BufferedImage outImage=null; outImage = new BufferedImage(image.getWidth(null), ...
-2
votes
1answer
84 views

Detect head tilt in a image [closed]

I am suppose to detect if there is a head tilt in photos. These photos are identity card size photos or passport size photos. If a head tilt is detected, then I need to correct / rectify the tilt ...
0
votes
2answers
39 views

Shift Image while keeping dimensions

I have an image that I would like to shift by some x, y value and then save. My problem is that I would like to keep my original dimensions, so that there is x and y "blank" space left after shifting ...

1 2 3 4 5 34