The CImg Library is a small, open source, C++ toolkit for image processing. CImg stands for Cool Image : It is easy to use, efficient and is intended to be a very pleasant toolbox to design image processing algorithms in C++. Due to its generic conception, it can cover a wide range of image ...
2
votes
2answers
180 views
implementation of DFT in C++
I want to implement the DFT in C++ language to process images.
As I was studying the theory, I got to know, that I can divide the 2D DFT into two 1D DFT parts. Firstly, for each row I perform 1D ...
2
votes
1answer
46 views
How to display few images (each in separate window) with CImg ?
How can one display several images - each in one window - with the use of CImg ?
When I try something like this
cimg_library::CImg<unsigned char> image(s.c_str());
...
2
votes
2answers
103 views
fastest image processing library?
I'm working on robot vision system and its main purpose is to detect objects, i want to choose one of these libraries (CImg , OpenCV) and I have knowledge about both of them.
The robot I'm using has ...
2
votes
3answers
164 views
Flood filling C++
I have a problem with implementation of flood filling.
The task is to ask user to click on the white part of the image (indicating seed point), he want to fill with black. The operation should be done ...
2
votes
1answer
135 views
How do take a screenshot correctly with xlib?
I am trying to capture an image of the screen for use in screencasting. Thus I need a fast solution, and cannot rely on shell programs such as import or xwd.
This is the code I have written so far, ...
2
votes
3answers
97 views
OpenGL with GLUT— malloc errors
I want to screen scrape the image from a GLUT window that has been rendered in OpenGL. In side of the display callback I inserted this code:
display() {
drawTriangle(); //Renders the image
...
2
votes
1answer
244 views
can the CImg library draw thick lines
I have been using the CImg library, and have been pleased with how easy it is to integrate and use. However, I now want to draw thick lines (i.e., more than one pixel thick). It is not clear from the ...
2
votes
5answers
489 views
Segmentation fault when different input is given
I do some image processing work in C++. For this i use CImg.h library which i feel is good for my work.
Here is small piece of code written by me which just reads an image and displays it.
#include ...
2
votes
1answer
868 views
FFT of an image
I have an assignment about fftw and I was trying to write a small program to create an fft of an image. I am using CImg to read and write images. But all I get is a dark image with a single white dot ...
1
vote
2answers
360 views
glReadPixels - image looks dithered
I wish to capture an image I rendered rendered in openGL. I use glReadPixels and then save the image with CImg. Unfortunately, the result is wrong. See below. The image on the left is correct. I ...
1
vote
2answers
246 views
Usinfg CImg lib with Qt for faster image resizing. Is It worth it to dig?
My project is to batch resize a big number (30000) of small jpeg images (400*300) to 15 different destination sizes (which are smaller than the source).
I first created a multi-threded command line ...
1
vote
1answer
297 views
CImg: How to save a grayscale?
When I use CImg to load a BMP, how can I know whether it is a grayscale or color image?
I have tried as follows, but failed:
cimg_library::CImg<unsigned char> img("lena_gray.bmp");
const int ...
1
vote
1answer
288 views
CImg Python 3 bindings or something at least comparable?
i'm searching a Python lib with good image processing functionalities .
I was searching for CImg (which i've already used on C++ projects) bindings, but i wasn't lucky.
I found PIL, but it lacks a lot ...
1
vote
3answers
143 views
Why can CImg achieve this kind of effect?
The compilation is done on the fly :
only CImg functionalities really used
by your program are compiled and
appear in the compiled executable
program. This leads to very compact
code, ...
1
vote
1answer
234 views
CImg compile problems in Codegear 2009
I wish to use the CImg library for image processing in my current project. I am using Codegear C++ Builder 2009. I include CImg.h in the source file and put in the following code:
int rows =5;
int ...
1
vote
1answer
243 views
SVD Singular Value Decomposition in CImg library
the CImg library offers SVD calculation. however, i'm always getting a
* glibc detected * ./projective_template: free(): invalid next size (fast): 0x089165b8 *
error. I couldn't find proper ...
1
vote
1answer
391 views
Multiplying and adding images with CImg In C++
I am trying to find C in the following function in CImg
C=B*L+(1-B)S
Where C, L and S are all RGB images of the same size (and B is a single channel grayscale matte)
I cannot figure out how to loop ...
0
votes
0answers
55 views
Libpng and Cimg - VC2010 Link errors when trying to use both
So I have been trying to use CImg to load png images. I copied all needed zlib and libpng headers to VC/include , created libpng15.lib and zlib.lib as Release and Debug Libraries.
The link errors I ...
0
votes
1answer
114 views
How to draw a simple function using the CImg library?
I am looking forward to draw some simple mathematical functions (like y = x^3) using the CImg library.
I tried to use it but it is always giving me the following error:
undefined reference to ...
0
votes
1answer
116 views
filling shapes with patterns in CImg
I want to be able to draw shapes and flood-fill them with various fill patterns (diagonal lines, stipple dots, etc).
The CImg library includes functions for drawing various shapes with an arbitrary ...
0
votes
2answers
47 views
Identifying start and end XY vector of characters on image
I'm trying to recollect some information about letters to start some kind of OCR with Neural Networks. I've yet to really join all the things together, however, the problem I'm having right now is how ...
0
votes
0answers
71 views
Simultaneous image display and code execution in CImg / Visual Studio
I am using CImg library to display a grayscale image (from a matrix) with VS 2008 and wants the code execution shall not stop once image is displayed i.e the image shall also continue to display and ...
0
votes
1answer
120 views
CImg library in Cuda
I am working on a code in CUDA C on VS2008 ,Win 7. I got a matrix of float which is to be displayed as image ..i saved it as .bin file and load it in a separate .cpp file and successfully formed the ...
0
votes
0answers
173 views
Cimg Dev C++ segfault
I'm trying to use CImg with dev c++, I can't even get it to run this:
#include"CImg.h"
using namespace cimg_library;
int main()
{
return 0;
}
I get segfault when I run this, apparently in ...
0
votes
1answer
477 views
How to compute SVD using Cimg (or maybe openCV or eigen library)?
May anyone give me a quick guide on how to use Cimg to compute SVD for a 3-dimension array?
I just want to get the decomposition of the array in order to compress it small for speeding up further ...
0
votes
3answers
246 views
What is the name of CImg's library?
I'm trying to find the Cimg library so that I can add it to libraries I have in Dev-c++, but there's no folder in Cimg named lib, so what's it called? Thanks.
0
votes
1answer
472 views
Loading PNGs with CImg
I am unable to load PNGs with CImg. I've heard you need to get libpng / zlib to get to work first but I am unsure how to set this up. I am on Ubuntu. My source:
#include <cmath>
#include ...
0
votes
1answer
217 views
How to correct RGB color taken with camera?
I had this question in my mind lately: I have taken a photo of a picture in my computer's display using my phone's camera (2MP) then transferred the picture to my computer. What i have noticed is ...
0
votes
3answers
1k views
How to get rgb value by cimg?
CImg<unsigned char> src("image.jpg");
int width = src.width();
int height = src.height();
unsigned char* ptr = src.data(10,10);
How can I get rgb from ptr?
0
votes
1answer
478 views
Write TIFF float images using CImg
I'm using CImg and I have noticed that I cant write TIFF images with float data. CImg wrotes them as 1byte/per pixel integer images.
¿Does anyone know if it is possible to write float images? Or, do ...
0
votes
1answer
202 views
Inserting an image with Cimg Graphics library [closed]
can anybody explain how to insert a JPEG image with the CImg Graphics library in VC++?
0
votes
2answers
195 views
is there a way to change the text's font in Cimg?
i wanted to know if i can draw a text in Cimg graphic library draw_text function and change the font of the text to another font ?
0
votes
1answer
219 views
Selecting an area from displayed image using CImg library
I use CImg for my image processing work. I had written a small piece of code which is follows:
#include "../CImg.h"
#include <iostream>
using namespace std;
using namespace cimg_library;
int ...
0
votes
1answer
288 views
Single channelled images in CImg
I use CImg for my image processing work. I work only on Gray Scale JPG, BMP, TIFF images presently. the problem i am facing with CImg function is as follows:
CImg stores the Pixel values in the ...
-1
votes
1answer
98 views
Create CImg<uint8_t> from byte array?
I'm trying to modify a C++ library that has a function that creates a CImg instance from an image file, to use a byte array instead. Is this possible? I found one method that appears to allow it...
...