Tagged Questions
0
votes
3answers
60 views
Image processing code help - C#
Alright y'all, time for more n00b help.
I've been working on this code in C# (Mono, to be exact). It is designed to take an image, break it down pixel by pixel, and write R,G, and B values as color ...
0
votes
1answer
49 views
Identifying red dot in JPEG picture in microcontroller
I am starting a project in which i'll have to identify a red dot/ball in a JPEG picture - problem is it has to be done on a microcontroller.
I'm pretty much at the bare bottom, so i am seeking ...
0
votes
1answer
33 views
reconstructing line diagrams from JPEGs
I wish to recreate characters and graphics primitives from JPEG images. Although the JPEG tranformation is lossy, because the original is (probably) monochrome with well defined primitives it can be ...
-1
votes
2answers
378 views
Power Signal Noise Ratio (PSNR) of colored jpeg image [closed]
I have an original image and a distorted image of the original one. I want to calculate the PSNR of the distorted image, so that I can measure the distortion in dB. Image type is colored jpeg.
0
votes
2answers
134 views
Saving Jpeg image in C# changes pixels
I wrote my own code implementing Steganography project to hide text inside an image. The code works perfectly.
But when I save the image into jpeg file and opening it again, the data is lost, and I ...
2
votes
1answer
200 views
Windows Phone 8: Open jpeg in C++ code
I want to load jpeg images located in the isolated storage of a Windows Phone 8 app from C++ code. One solution is to use libjpeg or any other 3rd party library. But is it also possible to load a jpeg ...
1
vote
0answers
84 views
Java library to convert EMF file to jpg image
I am developing an android app which must convert EMF(enhanced metafiles) file type to jpg/jpeg/png file. I need to make it display. Which java libraries can help me to do that?
5
votes
1answer
463 views
Besides standard/progressive, the 3rd kind of JPEG compression: load by channel?
this question might be an "Open Question" and many of you might be eager to close it, but please don't. Let me explain.
As we all know, JPEG has two kinds of compression (at least in Photoshop save ...
0
votes
0answers
74 views
Jpg Compression and viewing/writing to file
So, I am sending gray jpg images over a network. I compress them in memory using jpge: https://code.google.com/p/jpeg-compressor/, and then pass them over the network. When I go to display them using ...
0
votes
2answers
88 views
Compression of multiple images into a single image
I am looking at the problem of reducing storage space when storing multiple images together as a single bigger image. The basic intuition is that images tend to have some similarities (like those ...
5
votes
2answers
141 views
JPEG image compression
I am looking at the problem of reducing storage space when storing multiple JPEG images together as a single bigger image. The basic intuition is that images tend to have some similarities (like ...
2
votes
1answer
264 views
Jpeg DCT and IDCT not calculated properly
I'm trying to calculate DCT and IDCT of an input image, and display the IDCT output as resultant image. But my IDCT values are going above 300. My input image is a '.rgb' image.
I am also considering ...
0
votes
0answers
64 views
Lossless JPEG file writing
I have a question with regard to JPEG file writing. Suppose I have a PNG file example.png, and I want to change the file format to JPEG without any information loss. For the now being, I have two ...
0
votes
0answers
34 views
None-trivial JPEG Compression Quine
I was just wondering if there are any non-trivial JPEG compression algorithm quines -- images where if you compress them at a specific level, they return themselves.
Slightly related, I was wondering ...
0
votes
1answer
54 views
How to manage bmp to jpeg conversion if the image sides are not divisible by 8?
While converting a bmp to a jpeg we take DCT of discrete units of 8 X 8 of the image. Suppose we have an image where the height and width is not divisible by 8, then we will have some pixels left on ...
1
vote
1answer
115 views
Batch processing SVG to PNG with borders
I have an SVG file and I need to export it to PNG in almost 1,000,000 different sizes (height 32-1000px and width 32-1000px).
But there is a catch, the SVG image itself has a width to height ratio ...
2
votes
1answer
450 views
TIFF with JPEG-compression much larger than original JPEG
I am trying to convert JPEGs to TIFFs with JPEG-compression using FreeImage.Net and C#. This works fine, however, for low-quality JPGES the TIFF-files are a lot larger than the original. I assume the ...
1
vote
2answers
361 views
opencv read jpeg image from buffer
I have an unsigned char* buffer containing data of a jpeg image. I would like to display that image using c++ and opencv. If i do:
Mat img(Size(640, 480), CV_8UC3, data);
namedWindow("image", 1);
...
0
votes
0answers
57 views
Distorted image colors in IE/Explorer
I've created a small drawing app and someone else implemented some code to save the images drawn... I don't have direct access to their code, but I'm trying to help them resolve a small problem. It ...
3
votes
0answers
75 views
Apply built-in color profile to image
I have one JPEG-picture with embeded color profile. Some web-browsers show image with applied profile, some not. How to apply color profile to image and delete profile, that all browsers display image ...
2
votes
2answers
1k views
Bitmap compress PNG -> JPEG and vice versa in Android
I have problem with size of picture when I'm doing conversion from PNG to JPEG, and then JPEG to PNG.
public void onClick(View v) {
String imageFileName = ...
2
votes
1answer
121 views
How does the JPEG orientation feature work?
I do have some images (example) which will be displayed differently depending on the software I am using.
When I open the image in my browser, the picture loads from the right side to the left (in ...
0
votes
1answer
366 views
Gdk pixbuf load image from memory
Using GTK+ 3.6 I would like to display an image from a buffer in memory, not a file on disk. I have a const char *data with the image data, and I'm trying to create a GTK image from it.
So far I have ...
3
votes
1answer
241 views
python create jpg file from raw data
I have this strange xml file which apparently contains jpeg image data:
<?xml version="1.0" encoding="UTF-8"?>
<AttachmentDocument xmlns="http://echa.europa.eu/schemas/iuclid5/20070330" ...
1
vote
0answers
117 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 ...
0
votes
1answer
211 views
java save an image in RAW format or so from a JPEG without loading its full contents
I was wondering if it is possible to load a huge JPEG (see my previous question there) and save it / use it in a quickly-loadable format, without loading its fully decoded contents into memory.
The ...
0
votes
1answer
154 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 ...
1
vote
2answers
279 views
How can I convert png/gif/jpg in grails to jpg maintaining a high quality in the image?
I use the following method for converting images to jpg. The problem with my solution is that it will reduce the quality to much.
What is a good way to maintain quality of the image, while reducing ...
0
votes
1answer
757 views
JPEG encoding bitmap (BMP) image from file using libjpeg / C++
We're using version 8d of IJG's libjpeg library to create JPEG images from 24-bit Windows bitmap (.bmp) files.
write_JPEG_file() function from IJG's example.c is being used without any modifications, ...
1
vote
1answer
313 views
JAVA Writing Gray Scale JPEG Image (dependency on JDK version?)
I'm a beginner in JAVA language and I need to use a code (Writing GRAY scale JPEG images).
I searched quite long time, but I cannot figure out what is the problem now.
public static boolean ...
1
vote
1answer
806 views
How add an image to an existing pdf file from a location and should save back to same location?
How add an image to an existing pdf file from a location,
and should save back to same location, I have used following code but it generates a new pdf with existing jpeg. But how to deal with ...
1
vote
1answer
109 views
How to transfer an image on iPhone without leaving the exif thumbnail in the header?
I manipulated some images replacing the thumbnail present in the photo exif header. I would be interested in transferring such a photo to an iPhone anyway everytime I transfer it via e-email or in ...
1
vote
1answer
107 views
What's the best (fastest for performance) code in PHP to resize very large images (3000x6000px)?
I found many examples on how to resize an image however I'm curious about what's the best (fastest) code in PHP to do it and for very large images (over 1000px).
I wrote this simple example... anyone ...
3
votes
1answer
244 views
Python Image Library Image Resolution when Resizing
I am trying to shrink some jpeg images from 24X36 inches to 11X16.5 inches using the python image library. Since PIL deals in pixels this should mean scaling from 7200X 4800 pixels to 3300 X2200 ...
8
votes
1answer
744 views
What is the fastest way to load compressed images on iOS?
I am writing an iOS app which need to load a lot of full-screen size images into OpenGL. Image storage space is a concern, so I am using png or jpg. Problem is: Loading the image data takes way too ...
0
votes
1answer
161 views
UIKit vs ImageMagick for compressing JPEGs
I am thinking of switching to ImageMagick to get better performance on jpeg compression on my iOS app. When I say performance, I mean a better image for the same amount of quality setting, and ...
0
votes
1answer
147 views
iOS Image Processing from JPEG
I have a stupid question. I want to load a JPEG file and do some image processing. In the processing, the image file must be in pixel=by-pixel (unsigned char*), or in the format .bmp. I want to know ...
2
votes
1answer
1k views
How to get the rgb values of a jpeg image in TYPE_3BYTE_BGR?
I have this image:
I'd like to extract the RGB values of this image in an int[]. This is what I've done so far for PNG images:
File f = new File("t.jpg");
BufferedImage img = ImageIO.read(f);
...
13
votes
5answers
336 views
JPEG decompression inconsistent across Windows architectures
I am testing JPEG decompression on a bunch of computers with different versions of Windows. All of these computers have .NET 4 installed and I am compiling against .NET 2 and the "Any CPU" platform ...
1
vote
2answers
1k views
convert a pdf file to single jpeg?
how we can convert a pdf file to single jpeg? now i have using following code to convert to different images..but how i can acheive as a single jpeg image
package packagename;
import ...
1
vote
1answer
269 views
iOS vs Photoshop JPEG Compression
I have a simple question for anyone who knows the answer to this... I am making a social photo sharing app and I want to save a large enough image in the app so that it can be used in a full screen ...
1
vote
1answer
417 views
why the difference between bitmap.Save with ImageFormat and ImageCodecInfo is so big in .net?
I'm experimenting with image re-sizing in asp.net. Actual re-sizing code aside, I am wondering why there is such a big difference between bitmap's Save overloads
method 1
ImageCodecInfo ...
1
vote
1answer
296 views
Python PIL convert JPG from AdobeRGB to sRGB
How can I detect if the JPG is AdobeRGB and if it is convert it in python to sRGB JPG.
If that is possible in PIL, that would be great. Thank you.
1
vote
1answer
2k views
Write a JPG image file in C
I read JPEG image file and store its bits to a text file. Now I wanna convert back to valid JPEG image using those bits in the text file. I have tried writing a binary file but it doesn't retrieve the ...
1
vote
1answer
538 views
Jpg encoding with Java
I stumbled onto this problem today, let me explain the issue:
I have this Java web application that deals with a lot of image files. It only allows JPGs files (company policy I guess...). The files ...
2
votes
2answers
1k views
imagejpeg(); not generating image on host server , working fine on localhost
I have this code which is supposed to generate a captcha image of random number , it's working fine on localhost but not on my hosting, Can anyone help please? Can someone tell me where am i going ...
2
votes
1answer
5k views
C# Load JPG file, extract BitmapImage
I am trying to extract a BitmapImage from a JPG. This is the code I have:
FileStream fIn = new FileStream(sourceFileName, FileMode.Open); // source JPG
Bitmap dImg = new Bitmap(fIn);
MemoryStream ms ...
11
votes
2answers
1k views
PIL - Convert GIF Frames to JPG
I tried to convert an gif to single images with Python Image Library,
but it results in weird frames
The Input gif is:
In my first try, i tried to convert the image with Image.new to an
RGB ...
0
votes
1answer
859 views
get RGB-YCbCr components of image
I want to show the jpeg image R_G_B channels as separated images in jlabel and the Y-Cb-Cr channels as well, I got the arrays but don't know how to convert them to images
///
Edit:
thanX very much ...
2
votes
2answers
116 views
Is there any reason why GD would compress my resized image in this situation
I have a process where I'm taking a JPG and resizing it.
My intention is to not apply any additional compression and simply modify the dimensions, however, after the code runs the image is of smaller ...



