Questions tagged [jpeg2000]

JPEG2000 is an image encoded format intended to supercede JPEG.

JPEG 2000 is an image compression standard and coding system. It was created by the Joint Photographic Experts Group committee in 2000 with the intention of superseding their original discrete cosine transform-based JPEG standard (created in 1992) with a newly designed, wavelet-based method.

JPEG2000 is supported by Webkit based browsers (Safari, Chrome) on Mac OS X.

More information at Wikipedia page of JPEG2000

201 questions
5
votes
1 answer

JPEG2000 viewer and support on Android

I am looking for JPEG 2000 (jp2,jpx) support on Android. I checked up various google and non Google groups, but they seems to be of not much help. Could anyone please guide. If anyone knows of a JPEG2000 viewer for Android, please share. Thanks
user782310
  • 51
  • 1
  • 4
5
votes
2 answers

Issue with DCIM to JPG converter

I have downloaded this library and I am running the code below: import java.awt.image.BufferedImage; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import…
Soft
  • 1,796
  • 5
  • 19
  • 30
4
votes
2 answers

Why are my JPEG2000 format (.jp2) images showing in Safari but not in Chrome or Brave?

My website is https://www.makarsky.dev , all files are located on Github at https://github.com/jacobmakarsky/jacobmakarsky.github.io I am linking images in the following format - ./resources/images/forbes.jp2 My images are located in an images…
Zero Cool
  • 2,541
  • 2
  • 8
  • 13
4
votes
1 answer

Why Google recommends using JPEG 2000 and JPEG XR and after Google Chrome doesn't support them?

Google recommends "Serve Images in Next-Gen Formats" and specifically mentions WebP, JPEG 2000 and JPEG XR, but then it doesn't provide support for 2 of them (JPEG 2000 and JPEG XR) in its own browser. Can someone please explain me why is this?
Gago Design
  • 982
  • 2
  • 9
  • 16
4
votes
2 answers

Can DICOM pixel data compression decompression mess with window center and window width

I am viewing Computerized Tomography ( CT) DICOM images. These were originally uncompressed DICOM images. I have lossless J2K compressed form of these DICOM images: Transfer syntax = 1.2.840.10008.1.2.4.90 (JPEG-2K Lossless). When I uncompress…
Yogesh Devi
  • 617
  • 11
  • 30
4
votes
1 answer

Working with JP2 Image on Python Pillow

I am trying to use python pillow imaging library to process my jp2 images. I followed these steps: brew install libjpeg brew install openjpeg sudo pip install pillow I just have problem with .jp2 files. What might be the problem? Code that I get…
user2616232
  • 661
  • 1
  • 9
  • 14
4
votes
1 answer

How to convert a JPEG2000 to JPEG in Python?

I have a JPEG 2000 Image, and want to convert it to a simple JPEG image, so that it will be visible in all browsers. I tried looking at PythonMagic. I downloaded it from here and installed it, but couldn't find any documentation, on how to use it. I…
Devdatta Tengshe
  • 4,015
  • 10
  • 46
  • 59
4
votes
1 answer

How do I convert UIImage to J2K (JPEG2000) in iOS?

I have managed to get OpenJPEG to compile in my iOS app, but I have no clue where to begin trying to convert a UIImage to a J2K file or J2K in memory buffer. Suggestions?
jjxtra
  • 20,415
  • 16
  • 100
  • 140
4
votes
1 answer

How to programmatically open and display a jp2 file on android?

I am new on android development, I have a JP2 file (jpeg 2000) image and I want to write an app to load and display it on Android device. Where do I start? Thanks.
late close
  • 49
  • 3
4
votes
1 answer

Build OpenJPEG for Android

I have a question. What would I do I use the OpenJPEG on Android? (I'm "j2k_to_image" is primarily want to use.) I would like you to tell me how do I write a makefile. Thanks in advance.
4
votes
2 answers

Compress JP2 (JPEG2000) image with a high compression level

After reading Image from database, I need to convert that Image to JP2 (JPEG2000) Update: I used FreeImage to convert the image to JP2 // Load bitmap FIBITMAP dib = FreeImage.LoadEx(imageName); // Check success if (dib.IsNull) { …
Dark_Knight
  • 387
  • 4
  • 20
3
votes
1 answer

Quick, multi-OS, command line conversion of JPEG-2000 to JPEG

I am working on a web script that handles image processing using ImageMagick. It takes relevant parameters, executes an ImageMagick command at the command line or shell depending on OS, and passes the raw image data back to the script. The language…
aaron
  • 315
  • 1
  • 7
3
votes
3 answers

jpeg2000 on ios app

Has anyone had luck converting and using jpeg2000 on the ios? I am writing and inventory app and would love to go with a jpeg2000 file type if I can figure out how to get the phone to support it. I have seen that there is a nice project for webp -…
Quotient
  • 3,925
  • 6
  • 31
  • 35
3
votes
0 answers

Using Boost::GIL library with Openjpeg library to convert any common format to jpeg2000

I'm new to image processing. I was able to use the Boost Generic Image Library (Boost::GIL) to convert between common formats such as Bitmaps, JPEG, PNG, and TIFF. Now, I want to use the openjpeg library to convert any common format to…
BunRieuCua
  • 53
  • 4
3
votes
1 answer

Trying to crop image and save dicom with pydicom,

Trying to load a chest x-ray DICOM file that has JPEG2000 compression, extract the pixel array, crop it, and then save as a new DICOM file. Tried this on a Windows10 and MacOS machine, but getting similar errors. Running Python 3.6.13, GDCM 2.8.0,…
anbk
  • 63
  • 1
  • 7
1
2
3
13 14