Backscatter file formats

From SoftwareGuy
Revision as of 19:17, 19 March 2023 by Mark (talk | contribs) (Created page with "= Links = http://www.fileformat.info/mirror/egff/ http://www.apteryx.fr/dicom/ https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3948928/ https://imagej.nih.gov/ij/developer/api/ij/plugin/DICOM.html http://dicom.nema.org/standard.html = Examples = http://stackoverflow.com/questions/11510846/pixelmed-processing-a-dicom-image http://stackoverflow.com/questions/5775242/can-i-use-pixelmed-on-android http://www.programcreek.com/java-api-examples/index.php?source_dir=mobil...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Links[edit | edit source]

http://www.fileformat.info/mirror/egff/

http://www.apteryx.fr/dicom/

https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3948928/

https://imagej.nih.gov/ij/developer/api/ij/plugin/DICOM.html

http://dicom.nema.org/standard.html

Examples[edit | edit source]

http://stackoverflow.com/questions/11510846/pixelmed-processing-a-dicom-image

http://stackoverflow.com/questions/5775242/can-i-use-pixelmed-on-android

http://www.programcreek.com/java-api-examples/index.php?source_dir=mobile-cardio-master/SCPView/src/ua/stu/scplib/attribute/DicomInputStream.java

Pixelmed[edit | edit source]

SourceImage example

TIFF[edit | edit source]

https://github.com/Beyka/Android-TiffBitmapFactory/tree/master/src/main/jni

http://libtiff.maptools.org/

meta data[edit | edit source]

http://stackoverflow.com/questions/24059421/adding-custom-tags-to-a-tiff-file

http://libtiff.maptools.org/addingtags.html

https://trac.osgeo.org/geotiff

NDK links[edit | edit source]

https://kvurd.com/blog/compiling-a-cpp-library-for-android-with-android-studio/

https://ph0b.com/new-android-studio-ndk-support/

https://developer.android.com/studio/projects/add-native-code.html

https://developer.android.com/studio/projects/add-native-code.html#create-cmake-script

http://tools.android.com/tech-docs/new-build-system/gradle-experimental

Setup of standalone tool chain to build libtiff[edit | edit source]

cd ~/project/tiff-4.0.7
/opt/android-sdks/ndk-bundle/build/tools/make_standalone_toolchain.py --arch arm --api 22 --install-dir ~/projects/android-toolchain-api22
PATH="~/project/android-toolchain-api22/:${PATH}"
export PATH
export CC=arm-linux-androideabi-gcc
export CXX=arm-linux-androideabi-g++
#./configure --prefix=$(pwd)/build --host=arm-linux-androideabi --disable-shared
./configure --prefix=$(pwd)/build --host=arm-v7a-linux --disable-shared
make
make install
mkdir ~/project/HBI120/app/src/main/jni/libtiff
cp ~/projects/tiff-4.0.7/build/lib/libtiff.a ~/project/HBI120/app/src/main/jni/libtiff
cp -r ~/projects/tiff-4.0.7/build/include ~/project/HBI120/app/src/main/jni/libtiff