what are the steps to use Phil Sallee's JPEG toolbox for MATLAB?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Budoor Salem
le 22 Nov 2016
Commenté : negar zamani
le 8 Août 2019
I don't know how to integrate Phil Sallee's JPEG toolbox with MATLAB to start using it what are the right steps to be able to use the JPEG toolbox?
thanks
2 commentaires
Walter Roberson
le 23 Nov 2016
The download link for the toolbox appears to be at http://dde.binghamton.edu/download/feature_extractors/ at the end of the "Note: All JPEG domain extractors require" paragraph.
Réponse acceptée
Walter Roberson
le 23 Nov 2016
The download link provides pre-built files for 64 bit Linux, old 32 bit MATLAB for MS Windows, newer 32 bit MATLAB for MS Windows, and 64 bit MATLAB for MS Windows. It misses out on 32 bit Linux and on 32 bit or 64 bit for OS-X.
If you are using a system that the binaries are not already provided for, then install a relevant compiler for your system, then in MATLAB use
mex -setup C
to configure use of that compiler. Then in MATLAB cd to the directory you loaded into and command
mex jpeg_read.c
mex jpeg_write.c
after that if everything worked then you can add the directory on to your MATLAB path and proceed to call upon jpeg_read and jpeg_write in your code as if they were built-in functions.
3 commentaires
Govindraj Chittapur
le 16 Juin 2018
Modifié(e) : Walter Roberson
le 8 Août 2019
No supported compiler or SDK was found. You can install the freely available MinGW-w64 C/C++ compiler; see Install MinGW-w64 Compiler. For more options, visit http://www.mathworks.com/support/compilers/R2017a/.
Walter Roberson
le 16 Juin 2018
When I checked before, it provided Windows x64 binaries and probably would not need to be recompiled. But if you do need to recompile for some reason, then for R2017a see https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/SystemRequirements-Release2017a_SupportedCompilers.pdf .
Your choices for R2017a for Windows were effectively:
- one of the commercial Visual Studio releases (none of the free ones were supported); or
- SDK 7.1 (works fine for Windows 7, a small detour to install properly for Windows 8, somewhat of a pain to install properly for Windows 10)
- MingW 5.3; see https://www.mathworks.com/matlabcentral/fileexchange/52848-matlab-support-for-mingw-w64-c-c++-compiler
Plus de réponses (1)
Jan
le 22 Nov 2016
If you have downloaded it and have pre-compiled files for your Matlab version, all you have to do is storing them in a folder, which belongs to you Matlab path, see addpath. Then you can use the functions. If you have any problems with this, please explain them in detail.
2 commentaires
negar zamani
le 8 Août 2019
i have a problem with jpeg_read and write. i have a 64 bit system and matlab 2018a.os is windows 7. I did these steps:
1.download MinGW for matlab from add on.
2. to sure about rigth installing, test mex yprime.c and it worked correcly.
3 .download jpegtoolbox from here
4 . extracted it and move them to my project directory in matlab and add this path from set path.
5 . by using three above command these error happened:

so try other
jpeg_read run correctly and i have a Structure about jpegpic like by below:

but when i try to jpeg_write error that you see in this picture, happened.
i'm very cofused .please help me.
Voir également
Catégories
En savoir plus sur MATLAB Support for MinGW-w64 C/C++ Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!