Search the web
Sign In
New User? Sign Up
kakadu_jpeg2000 · Kakadu JPEG2000 Discussion Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5194 - 5225 of 5972   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5194
I'm trying to uncompress a JP2 file that's fully in memory. This is a test bench: std::ifstream file; file.open(argv[1], std::ios::binary); //open a JP2 file ...
gizwiz68
Offline Send Email
Apr 1, 2008
1:23 pm
5195
I have a set of files with multiple jp2 images in them, and I need to use the lib to unpack an image from where the file pointer is, from a file (or stream)...
gizwiz68
Offline Send Email
Apr 1, 2008
1:24 pm
5196
Ok, I figured it out, added the following to simple_example_d std::ifstream file; file.open(argv[1], std::ios::binary); //open a JP2 file ...
gizwiz68
Offline Send Email
Apr 2, 2008
1:54 am
5197
If your language of choice is C/C++, then you can implement a file reader class that derives from 'kdu_compressed_target' to fit your specific needs. _____ ...
Jason Klotzer
jason_klotzer
Offline Send Email
Apr 2, 2008
2:12 am
5198
Does it really crash, or does it give an error message? If it really crashes, where does it crash (using a debugger)? Have you verified that your image file...
David Taubman
taubman_ds
Offline Send Email
Apr 2, 2008
4:56 am
5199
It really crashed somewhere in decompressor.pull_stripe(). But this morning, after a full rebuild, everything works. //Michael...
gizwiz68
Offline Send Email
Apr 2, 2008
4:05 pm
5200
Hi all ! I used and modify the kdu_compress sample to generate a jpeg 2000 frame in 422. I can get the total size of the generated data using the function ...
parmegiani_thomas
parmegiani_t...
Offline Send Email
Apr 2, 2008
4:07 pm
5201
Ah, that's good. So I guess it was a compilation problem -- otherwise it did not seem to make any sense. Cheers, David ... From: "gizwiz68" <yahoo@...> ...
David Taubman
taubman_ds
Offline Send Email
Apr 2, 2008
11:06 pm
5202
Actually, there is no direct function that gives you this information. It would be possible to collect this information along the way, during compression, but...
David Taubman
taubman_ds
Offline Send Email
Apr 2, 2008
11:08 pm
5203
Hello David, Thanks for the tip. Regards, ... From: David Taubman <d.taubman@...> To: kakadu_jpeg2000@yahoogroups.com Sent: Thursday, April 3, 2008...
thomas parmegiani
parmegiani_t...
Offline Send Email
Apr 3, 2008
1:00 pm
5204
Dear friends, When accessing the kakadu server from kakadu client application, I am getting following error message: "Server could not process the client...
alvin_ak
Offline
Apr 3, 2008
1:02 pm
5205
This error message usually means that you have too many active clients (pretty much like it says). Maybe your clients are creating sessions but not leaving...
David Taubman
taubman_ds
Offline Send Email
Apr 4, 2008
3:58 am
5206
I would not do it this way. The `kdu_cache' class is used for buffered data which already has been pre-digested into precincts, tiles and the like, any or all...
David Taubman
taubman_ds
Offline Send Email
Apr 4, 2008
4:07 am
5207
Thank you, David for the reply. Please provide some more clarification: 1. Kindly tell me what you mean by JPIP "close" request? Is it closing of the...
alvin_ak
Offline
Apr 4, 2008
1:43 pm
5210
Dear friends, I can able to create JP2 files using the simple_example_c program. Also I can able to view this JP2 image in kakadu_show viewer program, using...
alvin_ak
Offline
Apr 8, 2008
3:32 pm
5211
Hi all ! I am using kdu_compress to encode file to yuv 422 jpeg2000 frames. Most of the encoded frames can be decoded by the adv 202 except a few of them... ...
parmegiani_thomas
parmegiani_t...
Offline Send Email
Apr 8, 2008
3:33 pm
5212
Hello Thomas, The ADV202 will not robustly handle a 1920x1080 tile size (non- interlaced). It does not have sufficient internal memory to handle an image of...
Paresh
perry_b2008
Offline Send Email
Apr 9, 2008
2:43 pm
5213
Dear All We are compressing the image using KDU_COMPRESSION. Whether it compressing the images as lossless or lossy compression or kindly guide us if any...
dinesh_kcerise
Offline Send Email
Apr 10, 2008
7:22 pm
5214
If this test is in reference to a DICOM image, you should be able to compare the raw PixelData of the original image to that of the image after ...
Jason Klotzer
jason_klotzer
Offline Send Email
Apr 11, 2008
12:37 am
5215
Save the file as a raw codestream. You are creating raw codestreams using simple_example_c, not JP2 files. A JP2 file contains a raw codestream, embedded ...
David Taubman
taubman_ds
Offline Send Email
Apr 11, 2008
4:23 am
5216
Hi Michael, Obviously you want to modify "kdu_vex_fast". You will note that the `vex_frame_queue' object is initialized with an MJ2 video track object, from...
David Taubman
taubman_ds
Offline Send Email
Apr 11, 2008
4:39 am
5217
Hi Michael, Why do you think those statements can be removed from the source? Some boxes have 16-byte headers, with 64-bit box length attributes. Maybe not in...
David Taubman
taubman_ds
Offline Send Email
Apr 11, 2008
4:41 am
5218
hi,professor david, I want to set the arguments of simple_example_c in VC6.0. For example, I have written "lena.pnm lena.jp2" in "project-setting-debug- ...
fire_vr
Offline Send Email
Apr 14, 2008
1:14 pm
5219
You need to specify in the project settings "-i lena.pnm -o lena.jp2"; from your example, you are missing the "-i" and "-o" arguments (for input and output). ...
Jason Klotzer
jason_klotzer
Offline Send Email
Apr 14, 2008
8:42 pm
5220
hi,professor david, We have Purchased a v6.0 Non-Commercial Kakadu SDK to evaluate the performance of decoding .I write a simple test program to decode HD ...
cdliudun
Offline Send Email
Apr 15, 2008
3:11 pm
5221
This web page http://www.kakadusoftware.com/speed%20tests/kakadu-decode-speed.htm reports Kakadu version 6 JP2 decoding of digital cinema images 2048x857 at 24...
Greg Coats
greg_coatman
Offline Send Email
Apr 15, 2008
9:58 pm
5222
I'm trying to expand a jp2 back into tif using both demonstration applications and I have some issues: 1. Problem with the actual expansion: When I use...
unn0xi
Offline Send Email
Apr 16, 2008
1:23 pm
5223
After kdu_compress -i image1.tif -o image2.jp2 Creversible=yes kdu_expand -i image2.jp2 -o image3.tif the pixels in image1.tif and image3.tif are identical. ...
Greg Coats
greg_coatman
Offline Send Email
Apr 17, 2008
2:33 pm
5224
Thanks for your help! it works well using kakadu, but my jp2 isn't generated by kakadu. I'll be more discribtive this time: The jp2 i'm using is a product of...
unn0xi
Offline Send Email
Apr 17, 2008
7:24 pm
5225
Was this question ever answered or even addressed? It was posted during an approximate 6 week period at the beginning of the year when I didn't see any...
Steve Uttecht
simpledicom
Offline Send Email
Apr 21, 2008
1:57 am
Messages 5194 - 5225 of 5972   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help