 |
|
|
 |
|
 |
Hi I am a newer on VC++6, could you please let me how to run this program Its giving me error as :\Dowloads_Software\OpenCV\TonyJpegLib_src\J2kDemo\Jpegfile.cpp(25) : fatal error C1083: Cannot open include file: 'jpeglib.h': No such file or directory
After i solve the including files error, it gives error as Linking... LINK : fatal error LNK1104: cannot open file "J2kDll_d.lib" Error executing link.exe.
Please let me know the procedure to run this program n VC++6
Thanks in advance Faye
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
How about some information/description/anything??
Apathy Rules - I suppose...Its not the things you fear that come to get you but all the things that you don't expect
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Simple to use and also efficient. I have successfully managed to incorporate the encoder/decoder into one of my webcam applications.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi I am new to VC++6 please can you let me how to run this program Its giving me error as :\Dowloads_Software\OpenCV\TonyJpegLib_src\J2kDemo\Jpegfile.cpp(25) : fatal error C1083: Cannot open include file: 'jpeglib.h': No such file or directory
Or when i include the folder in include it gives error as Linking... LINK : fatal error LNK1104: cannot open file "J2kDll_d.lib" Error executing link.exe.
Please let me know the procedure to run this program n VC++6 or any other IDE
Thanks in advance Priyanka
|
| Sign In·View Thread·PermaLink | 2.20/5 (5 votes) |
|
|
|
 |
|
 |
I need jpg decoder source code in cpp. The raw data should written into the file. Please any one send the code.
|
| Sign In·View Thread·PermaLink | 1.80/5 (4 votes) |
|
|
|
 |
|
|
 |
|
 |
Hi Tony, Its really nice to go through your application. If i need to pass byte array in imagetranscode then wat should i do , it returned me erorr when i tried this.Is it possible that you could tell me more about Imagetranscode and its source.How could i process J2k in memory. Please help.
|
| Sign In·View Thread·PermaLink | 2.67/5 (3 votes) |
|
|
|
 |
|
 |
dear friends 
In MFC application (Dialog based or Cform view), if i load bitmap image in the background, its taking more memory.. here is my coding..
void CDlg_Splash::OnPaint() { CPaintDC dc(this); // device context for painting
HBITMAP m_Bmap; CRect rect; HDC memdc;
CString m_ifilename1;
m_ifilename1 = "C:\\test.bmp";
GetClientRect(&rect);
m_Bmap=(HBITMAP)::LoadImage(NULL,m_ifilename1,IMAGE_BITMAP,0,0,LR_LOADFROMFILE); memdc=::CreateCompatibleDC(dc.m_hDC); ::SelectObject(memdc,m_Bmap);
BitBlt(dc.m_hDC,0,0,rect.right,rect.bottom,memdc,0,0,SRCCOPY); DeleteObject(m_Bmap); DeleteObject(memdc); }
is it correct ? and also let me know is there any memory leakage? is it possible to load jpeg image in MFC dialog? (to avoid more memory usage)
Thanks in Advance...
Abdul Khathar A
|
| Sign In·View Thread·PermaLink | 1.50/5 (2 votes) |
|
|
|
 |
|
 |
Hi Tony,
i convert my bmp to jpg but i found that the quality was so bad. This is mainly because i think my image snap by camera then process by Matrox. IF I use Paint to create a bitmap then convert to jpg it looks just normal. Do you have any idea why is that happen? If yes, please email me davidlks83@yahoo.com
Thanks David
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
Hi Tony, Really good job !
I work on DCT domain manipulation but the problem is that I am beginner in c++ programming. I try to use your CminijpegEncoder/decoder classes separatly from your project.
Can pOutBuf (encoder) be directly be used as pInBuf for Decoder?
I had to remove "StdAfx.h" because I miss too many headers (in windows.h for example). Is StdAfx.h really necessary ? Do you it is the reason why I have some "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." errors
Thanks for advance! bye
PatKarbo
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
how can i know how many scan in jpeg progressive file? if we meet the FFC2 in the jpeg file,we know that the file is used jpeg progressive mode,and i can see many scan(FFDA) in that file.My question is how can i know that the file contain 10 or 11 or 12 FFDA there?
aries_girl5
|
| Sign In·View Thread·PermaLink | 1.50/5 (2 votes) |
|
|
|
 |
|
|
 |
|
 |
Hi,
i use our Jpeg - Lib and found a small bug. If you decode an image it is allowed than am 0xFF marker may be followed by additional 0xFF marker.
The following code will fix this issue. May you want to update your CodeProject site...
int CTonyJpegDecoder::ReadOneMarker(void) { if( INPUT_BYTE(m_pData) != 255 ) return -1; int marker; do { marker = INPUT_BYTE(m_pData); } while (marker == 255); return marker; }
Mr. Mulder
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
I wrote project capture screen to jpeg file. It's very nice in 32 bits color but in 16 bits color or 256 colors the jpeg file will be wrong. How do I.
Than.
|
| Sign In·View Thread·PermaLink | 1.00/5 (3 votes) |
|
|
|
 |
|
|
 |
|
 |
Looking at comments bellow I suppose that other people compiled and built demo project themselves. I downloaded project source and the main function is missing, by purpose or mistakenly, I do not know. Does anybody have code for function ImageTranscode which suppose to be exported from JpegLib. Function declaration is inside existing header file j2kdll.h, but function body is absent from whole lib and exe project.
|
| Sign In·View Thread·PermaLink | 2.43/5 (4 votes) |
|
|
|
 |
|
 |
Hi all, i need the code for decompressing a jpeg file that is stored in a data buffer(in the form of a raw data).
kiran
-- modified at 1:20 Tuesday 14th March, 2006
|
| Sign In·View Thread·PermaLink | 2.63/5 (8 votes) |
|
|
|
 |
|
 |
I have this book. All the source code is working. In real sense it is only written for JPEG. Even the author tried to explain, but very difficult to read. This is (as I know) the only book where you can find full working example and working code.
Compressed Image File Formats: JPEG, PNG, GIF, XBM, BMP (ACM Press) by John Miano (Paperback - Aug 19, 1999) Books: See all 18 items Buy new: $49.99 $42.90 Used & new from $12.96 Usually ships in 24 hours Good luck.
Agha Khan
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
Demo application crushes or produces strange JPEGs if I try to encode 8bpp bitmaps. It seems to be the problem of the demo itself, not of the encoders.
|
| Sign In·View Thread·PermaLink | 1.80/5 (4 votes) |
|
|
|
 |
|
 |
hi tony, i've got a question, i'm writing an application to creating a bitmap, for example a white bmp 500x400 with three red point at coordinate (2,3) (5,6) and (3,5). Do you have any idea?
|
| Sign In·View Thread·PermaLink | 1.50/5 (2 votes) |
|
|
|
 |
|
 |
Hi Tony, thanks for your nice code, I am ready to port your code to a 24-bits CPU, can I just replace all 32-bits int to 24-bits int, what else should I pay attention.
Thanks
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
Thanks for this excellent article! I wanted to have a look at how JPEG works, and this article is ideal, because the quality of your coding and commenting are first-rate. It's very well written, and very well explained. Good effort!
Duncan
|
| Sign In·View Thread·PermaLink | 3.00/5 (4 votes) |
|
|
|
 |