├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── CMakeLists.txt ├── README.md ├── config_depends.bat ├── dependencies.txt ├── include │ ├── backend_process │ │ ├── ColorManagedImage.hpp │ │ ├── HalfSizePreview.hpp │ │ ├── ReportRequest.hpp │ │ ├── SpectralPicker.hpp │ │ ├── SpectralPickerMeasured.hpp │ │ ├── ThumbnailLoader.hpp │ │ ├── backend_process.hpp │ │ └── pipeline.hpp │ ├── btrgb.hpp │ ├── image_processing │ │ ├── BitDepthScaler.h │ │ ├── ChannelSelector.h │ │ ├── ColorManagedCalibrator.h │ │ ├── CompositComponent.h │ │ ├── FlatFieldor.h │ │ ├── ImageCalibrator.h │ │ ├── ImageProcessor.h │ │ ├── ImageReader.h │ │ ├── ImgProcessingComponent.h │ │ ├── LeafComponent.h │ │ ├── NoiseReduction.h │ │ ├── PixelRegestor.h │ │ ├── PreProcessor.h │ │ ├── ResultsProcessor.h │ │ ├── SpectralCalibrator.h │ │ ├── Verification.h │ │ └── results │ │ │ ├── calibration_results.hpp │ │ │ ├── colorimetry_formater.hpp │ │ │ ├── general_info_formater.hpp │ │ │ ├── m_color_formater.hpp │ │ │ ├── m_spectral_formater.hpp │ │ │ ├── r_camera_fromater.hpp │ │ │ └── results_formater.hpp │ ├── image_util │ │ ├── ArtObject.hpp │ │ ├── BitDepthFinder.hpp │ │ ├── ColorProfiles.hpp │ │ ├── ColorTarget.hpp │ │ ├── Image.hpp │ │ ├── image_reader │ │ │ ├── ImageReaderStrategy.hpp │ │ │ ├── LibRawReader.hpp │ │ │ ├── LibRawThumbnail.hpp │ │ │ ├── LibTiffReader.hpp │ │ │ └── TiffReaderOpenCV.hpp │ │ └── image_writer │ │ │ ├── ImageWriter.hpp │ │ │ ├── ImageWriterStrategy.hpp │ │ │ ├── LibTiffWriter.hpp │ │ │ └── LibpngWriter.hpp │ ├── reference_data │ │ ├── color_patch.hpp │ │ ├── illuminants.hpp │ │ ├── ref_data.hpp │ │ ├── ref_data_array.hpp │ │ ├── ref_data_defines.hpp │ │ ├── standard_observer.hpp │ │ └── white_points.hpp │ ├── server │ │ ├── communication_obj.hpp │ │ ├── communicator.hpp │ │ ├── globals_singleton.hpp │ │ ├── process_manager.hpp │ │ └── request_server.hpp │ ├── utils │ │ ├── calibration_util.hpp │ │ ├── cmd_arg_manager.hpp │ │ ├── color_conversions.hpp │ │ ├── csv_parser.hpp │ │ ├── general_utils.hpp │ │ ├── json.hpp │ │ ├── jsonafiable.hpp │ │ ├── matrix_utils.hpp │ │ └── time_tracker.hpp │ ├── version.h │ └── version.h.in ├── linux_config_environment.sh ├── linux_debug.sh ├── linux_release.sh ├── osx_build.sh ├── osx_config_environment.sh ├── osx_debug.sh ├── osx_release.sh ├── res │ └── ref_data │ │ ├── APT_Reflectance_Data.csv │ │ ├── CCSG_Reflectance_Data.csv │ │ ├── CC_Classic_Reflectance_Data.csv │ │ ├── Illuminants.csv │ │ ├── NGT_Reflectance_Data.csv │ │ ├── Standard_Observer_1931.csv │ │ ├── Standard_Observer_1964.csv │ │ └── test.csv ├── src │ ├── backend_process │ │ ├── ColorManagedImage.cpp │ │ ├── HalfSizePreview.cpp │ │ ├── ReportRequest.cpp │ │ ├── SpectralPicker.cpp │ │ ├── SpectralPickerMeasured.cpp │ │ ├── ThumbnailLoader.cpp │ │ ├── backend_process.cpp │ │ └── pipeline.cpp │ ├── image_processing │ │ ├── BitDepthScaler.cpp │ │ ├── ChannelSelector.cpp │ │ ├── ColorManagedCalibrator.cpp │ │ ├── FlatFieldor.cpp │ │ ├── ImageCalibrator.cpp │ │ ├── ImageProcessor.cpp │ │ ├── ImageReader.cpp │ │ ├── NoiseReduction.cpp │ │ ├── PixelRegestor.cpp │ │ ├── PreProcessor.cpp │ │ ├── ResultsProcessor.cpp │ │ ├── SpectralCalibrator.cpp │ │ ├── Verification.cpp │ │ └── results │ │ │ ├── calibration_results.cpp │ │ │ ├── colorimetry_formater.cpp │ │ │ ├── general_info_formater.cpp │ │ │ ├── m_color_formater.cpp │ │ │ ├── m_spectral_formater.cpp │ │ │ └── r_camera_formater.cpp │ ├── image_util │ │ ├── ArtObject.cpp │ │ ├── BitDepthFinder.cpp │ │ ├── ColorProfiles.cpp │ │ ├── ColorTarget.cpp │ │ ├── Image.cpp │ │ ├── image_reader │ │ │ ├── LibRawReader.cpp │ │ │ ├── LibRawThumbnail.cpp │ │ │ ├── LibTiffReader.cpp │ │ │ └── TiffReaderOpenCV.cpp │ │ └── image_writer │ │ │ ├── ImageWriter.cpp │ │ │ ├── ImageWriterStrategy.cpp │ │ │ ├── LibTiffWriter.cpp │ │ │ └── LibpngWriter.cpp │ ├── main.cpp │ ├── reference_data │ │ ├── color_patch.cpp │ │ ├── illuminants.cpp │ │ ├── ref_data.cpp │ │ ├── ref_data_array.cpp │ │ ├── standard_observer.cpp │ │ └── white_points.cpp │ ├── server │ │ ├── communication_obj.cpp │ │ ├── communicator.cpp │ │ ├── globals_singleton.cpp │ │ ├── process_manager.cpp │ │ └── request_server.cpp │ └── utils │ │ ├── calibration_util.cpp │ │ ├── cmd_arg_manager.cpp │ │ ├── color_conversions.cpp │ │ ├── csv_parser.cpp │ │ ├── general_utils.cpp │ │ ├── json.cpp │ │ ├── jsonafiable.cpp │ │ └── time_tracker.cpp ├── test │ ├── nikon_raw_test.html │ ├── thumbnail_binary_image.html │ └── thumbnail_test.html ├── vcpkg_first_time_setup.bat ├── win10_debug.bat └── win10_release.bat ├── beyond-rgb-backend.vcxproj ├── docs └── resources │ ├── ArtObj.png │ ├── BackednProcess2.png │ ├── BackendArchetecture.png │ ├── BackendProcess.png │ ├── BackendSequence.png │ ├── PipelineComponents.png │ ├── Pipeline_drawio.drawio │ ├── ResultsFormating.png │ ├── Rotation Math Intuition.jpg │ ├── UnderTheHood │ ├── BeyondRGB_under_the_hood.pptx.pdf │ ├── PreProcessing │ │ ├── 1-inputFormat.png │ │ ├── 2-input.png │ │ ├── 3-bitdepthScaling.png │ │ ├── 4-flatFielding.png │ │ ├── 5-calcXYZ.png │ │ └── 6-regestration.png │ ├── Processing │ │ ├── 1-xyz2lab.png │ │ ├── 2-calcDeltaE.png │ │ ├── 3-colorTransformation.png │ │ ├── 4-colorTransformationContinued.png │ │ ├── 5-colorTransformationContinued.png │ │ ├── 6-spectralTransformation.png │ │ ├── 7-spectralTransformationContinued.png │ │ └── 8-spectralTransformationContinued.png │ ├── Rendering │ │ ├── 1-computingColorManagedImage.png │ │ ├── 2-computingColorManagedImage.png │ │ └── 3-RGB2xyz.png │ ├── SpectralPicking │ │ └── 1-spectralPicking.png │ └── Verification │ │ ├── 1-accuracyOfColorTransformation.png │ │ └── 2-accuracyOfSpectralTransformation.png │ ├── dynamicPipeline1.png │ ├── dynamicPipeline2.png │ ├── logos │ ├── Electron.png │ ├── cmake.png │ ├── cpp.png │ ├── svelte.png │ └── vcpkg.png │ └── pipeline.png └── frontend ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── icon.icns └── icon.ico ├── cypress.config.ts ├── cypress ├── e2e │ ├── Process │ │ └── test.cy.ts │ ├── home_page.cy.ts │ └── side_menu.cy.ts ├── fixtures │ └── example.json └── support │ ├── commands.ts │ └── e2e.ts ├── global.d.ts ├── index.html ├── package-lock.json ├── package.json ├── release_frontend.sh ├── src ├── main │ ├── index.js │ └── preload.js ├── renderer │ ├── App.svelte │ ├── Svelte.ts │ ├── assets │ │ ├── RefDataTemplate.csv │ │ ├── TextLogo.svg │ │ └── TextLogoAlt.svg │ ├── components │ │ ├── About.svelte │ │ ├── Button.svelte │ │ ├── Card.svelte │ │ ├── Charts │ │ │ ├── AtomicHeatMap.svelte │ │ │ ├── AtomicVectorChart.svelte │ │ │ ├── HeatMap.svelte │ │ │ ├── LineChart.svelte │ │ │ ├── LineChartMeasured.svelte │ │ │ ├── LinearChart.svelte │ │ │ └── VectorChart.svelte │ │ ├── CloseButton.svelte │ │ ├── ConfirmDialog.svelte │ │ ├── Dropdown.svelte │ │ ├── EmptyState.svelte │ │ ├── ExpandablePanel.svelte │ │ ├── FileSelector.svelte │ │ ├── ImageImporter.svelte │ │ ├── ImageRoleGrid.svelte │ │ ├── ImageViewer.svelte │ │ ├── LoadingOverlay.svelte │ │ ├── Menu.svelte │ │ ├── Modal.svelte │ │ ├── Page.svelte │ │ ├── Process │ │ │ ├── ColorTargetViewer.svelte │ │ │ ├── Dropbox.svelte │ │ │ ├── ImageBubble.svelte │ │ │ ├── Layout.svelte │ │ │ └── Tabs │ │ │ │ ├── AdvOpts.svelte │ │ │ │ ├── BatchProcessingRoles.svelte │ │ │ │ ├── ColorTarget.svelte │ │ │ │ ├── ImportImages.svelte │ │ │ │ ├── Processing.svelte │ │ │ │ ├── SelectDest.svelte │ │ │ │ ├── SelectProcessingType.svelte │ │ │ │ └── SpecFileRoles.svelte │ │ ├── ProcessCompleteModal.svelte │ │ ├── RefDataModal.svelte │ │ ├── ScrollContainer.svelte │ │ ├── ServerError.svelte │ │ ├── SortInfoModal.svelte │ │ ├── SpectralOverlay │ │ │ └── SpectralCanvas.svelte │ │ ├── SpectralPicker │ │ │ └── SpecPickViewer.svelte │ │ ├── Switch.svelte │ │ ├── SwitchRow.svelte │ │ └── TextInputRow.svelte │ ├── pages │ │ ├── Home.svelte │ │ ├── Process.svelte │ │ ├── Reports.svelte │ │ ├── Settings.svelte │ │ └── SpectralPicker.svelte │ ├── styles │ │ └── theme.css │ └── util │ │ ├── autoSortStandards.svelte │ │ ├── cssUtils.ts │ │ ├── csvExport.js │ │ ├── lab2rgb.js │ │ ├── photoViewerHelper.js │ │ ├── stores.ts │ │ ├── storesUtil.ts │ │ └── stringCompare.js └── types │ └── index.d.ts ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json ├── vcpkg.json ├── vite.config.ts └── win10_release_frontend.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/CMakeLists.txt -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/config_depends.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/config_depends.bat -------------------------------------------------------------------------------- /backend/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/dependencies.txt -------------------------------------------------------------------------------- /backend/include/backend_process/ColorManagedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/ColorManagedImage.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/HalfSizePreview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/HalfSizePreview.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/ReportRequest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/ReportRequest.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/SpectralPicker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/SpectralPicker.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/SpectralPickerMeasured.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/SpectralPickerMeasured.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/ThumbnailLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/ThumbnailLoader.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/backend_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/backend_process.hpp -------------------------------------------------------------------------------- /backend/include/backend_process/pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/backend_process/pipeline.hpp -------------------------------------------------------------------------------- /backend/include/btrgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/btrgb.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/BitDepthScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/BitDepthScaler.h -------------------------------------------------------------------------------- /backend/include/image_processing/ChannelSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ChannelSelector.h -------------------------------------------------------------------------------- /backend/include/image_processing/ColorManagedCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ColorManagedCalibrator.h -------------------------------------------------------------------------------- /backend/include/image_processing/CompositComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/CompositComponent.h -------------------------------------------------------------------------------- /backend/include/image_processing/FlatFieldor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/FlatFieldor.h -------------------------------------------------------------------------------- /backend/include/image_processing/ImageCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ImageCalibrator.h -------------------------------------------------------------------------------- /backend/include/image_processing/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ImageProcessor.h -------------------------------------------------------------------------------- /backend/include/image_processing/ImageReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ImageReader.h -------------------------------------------------------------------------------- /backend/include/image_processing/ImgProcessingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ImgProcessingComponent.h -------------------------------------------------------------------------------- /backend/include/image_processing/LeafComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/LeafComponent.h -------------------------------------------------------------------------------- /backend/include/image_processing/NoiseReduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/NoiseReduction.h -------------------------------------------------------------------------------- /backend/include/image_processing/PixelRegestor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/PixelRegestor.h -------------------------------------------------------------------------------- /backend/include/image_processing/PreProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/PreProcessor.h -------------------------------------------------------------------------------- /backend/include/image_processing/ResultsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/ResultsProcessor.h -------------------------------------------------------------------------------- /backend/include/image_processing/SpectralCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/SpectralCalibrator.h -------------------------------------------------------------------------------- /backend/include/image_processing/Verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/Verification.h -------------------------------------------------------------------------------- /backend/include/image_processing/results/calibration_results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/calibration_results.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/colorimetry_formater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/colorimetry_formater.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/general_info_formater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/general_info_formater.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/m_color_formater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/m_color_formater.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/m_spectral_formater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/m_spectral_formater.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/r_camera_fromater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/r_camera_fromater.hpp -------------------------------------------------------------------------------- /backend/include/image_processing/results/results_formater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_processing/results/results_formater.hpp -------------------------------------------------------------------------------- /backend/include/image_util/ArtObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/ArtObject.hpp -------------------------------------------------------------------------------- /backend/include/image_util/BitDepthFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/BitDepthFinder.hpp -------------------------------------------------------------------------------- /backend/include/image_util/ColorProfiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/ColorProfiles.hpp -------------------------------------------------------------------------------- /backend/include/image_util/ColorTarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/ColorTarget.hpp -------------------------------------------------------------------------------- /backend/include/image_util/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/Image.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_reader/ImageReaderStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_reader/ImageReaderStrategy.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_reader/LibRawReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_reader/LibRawReader.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_reader/LibRawThumbnail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_reader/LibRawThumbnail.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_reader/LibTiffReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_reader/LibTiffReader.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_reader/TiffReaderOpenCV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_reader/TiffReaderOpenCV.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_writer/ImageWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_writer/ImageWriter.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_writer/ImageWriterStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_writer/ImageWriterStrategy.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_writer/LibTiffWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_writer/LibTiffWriter.hpp -------------------------------------------------------------------------------- /backend/include/image_util/image_writer/LibpngWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/image_util/image_writer/LibpngWriter.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/color_patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/color_patch.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/illuminants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/illuminants.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/ref_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/ref_data.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/ref_data_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/ref_data_array.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/ref_data_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/ref_data_defines.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/standard_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/standard_observer.hpp -------------------------------------------------------------------------------- /backend/include/reference_data/white_points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/reference_data/white_points.hpp -------------------------------------------------------------------------------- /backend/include/server/communication_obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/server/communication_obj.hpp -------------------------------------------------------------------------------- /backend/include/server/communicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/server/communicator.hpp -------------------------------------------------------------------------------- /backend/include/server/globals_singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/server/globals_singleton.hpp -------------------------------------------------------------------------------- /backend/include/server/process_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/server/process_manager.hpp -------------------------------------------------------------------------------- /backend/include/server/request_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/server/request_server.hpp -------------------------------------------------------------------------------- /backend/include/utils/calibration_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/calibration_util.hpp -------------------------------------------------------------------------------- /backend/include/utils/cmd_arg_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/cmd_arg_manager.hpp -------------------------------------------------------------------------------- /backend/include/utils/color_conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/color_conversions.hpp -------------------------------------------------------------------------------- /backend/include/utils/csv_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/csv_parser.hpp -------------------------------------------------------------------------------- /backend/include/utils/general_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/general_utils.hpp -------------------------------------------------------------------------------- /backend/include/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/json.hpp -------------------------------------------------------------------------------- /backend/include/utils/jsonafiable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/jsonafiable.hpp -------------------------------------------------------------------------------- /backend/include/utils/matrix_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/matrix_utils.hpp -------------------------------------------------------------------------------- /backend/include/utils/time_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/utils/time_tracker.hpp -------------------------------------------------------------------------------- /backend/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/version.h -------------------------------------------------------------------------------- /backend/include/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/include/version.h.in -------------------------------------------------------------------------------- /backend/linux_config_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/linux_config_environment.sh -------------------------------------------------------------------------------- /backend/linux_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/linux_debug.sh -------------------------------------------------------------------------------- /backend/linux_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/linux_release.sh -------------------------------------------------------------------------------- /backend/osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/osx_build.sh -------------------------------------------------------------------------------- /backend/osx_config_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/osx_config_environment.sh -------------------------------------------------------------------------------- /backend/osx_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/osx_debug.sh -------------------------------------------------------------------------------- /backend/osx_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/osx_release.sh -------------------------------------------------------------------------------- /backend/res/ref_data/APT_Reflectance_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/APT_Reflectance_Data.csv -------------------------------------------------------------------------------- /backend/res/ref_data/CCSG_Reflectance_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/CCSG_Reflectance_Data.csv -------------------------------------------------------------------------------- /backend/res/ref_data/CC_Classic_Reflectance_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/CC_Classic_Reflectance_Data.csv -------------------------------------------------------------------------------- /backend/res/ref_data/Illuminants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/Illuminants.csv -------------------------------------------------------------------------------- /backend/res/ref_data/NGT_Reflectance_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/NGT_Reflectance_Data.csv -------------------------------------------------------------------------------- /backend/res/ref_data/Standard_Observer_1931.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/Standard_Observer_1931.csv -------------------------------------------------------------------------------- /backend/res/ref_data/Standard_Observer_1964.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/Standard_Observer_1964.csv -------------------------------------------------------------------------------- /backend/res/ref_data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/res/ref_data/test.csv -------------------------------------------------------------------------------- /backend/src/backend_process/ColorManagedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/ColorManagedImage.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/HalfSizePreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/HalfSizePreview.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/ReportRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/ReportRequest.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/SpectralPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/SpectralPicker.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/SpectralPickerMeasured.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/SpectralPickerMeasured.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/ThumbnailLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/ThumbnailLoader.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/backend_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/backend_process.cpp -------------------------------------------------------------------------------- /backend/src/backend_process/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/backend_process/pipeline.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/BitDepthScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/BitDepthScaler.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ChannelSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ChannelSelector.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ColorManagedCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ColorManagedCalibrator.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/FlatFieldor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/FlatFieldor.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ImageCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ImageCalibrator.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ImageProcessor.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ImageReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ImageReader.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/NoiseReduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/NoiseReduction.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/PixelRegestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/PixelRegestor.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/PreProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/PreProcessor.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/ResultsProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/ResultsProcessor.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/SpectralCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/SpectralCalibrator.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/Verification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/Verification.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/calibration_results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/calibration_results.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/colorimetry_formater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/colorimetry_formater.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/general_info_formater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/general_info_formater.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/m_color_formater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/m_color_formater.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/m_spectral_formater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/m_spectral_formater.cpp -------------------------------------------------------------------------------- /backend/src/image_processing/results/r_camera_formater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_processing/results/r_camera_formater.cpp -------------------------------------------------------------------------------- /backend/src/image_util/ArtObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/ArtObject.cpp -------------------------------------------------------------------------------- /backend/src/image_util/BitDepthFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/BitDepthFinder.cpp -------------------------------------------------------------------------------- /backend/src/image_util/ColorProfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/ColorProfiles.cpp -------------------------------------------------------------------------------- /backend/src/image_util/ColorTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/ColorTarget.cpp -------------------------------------------------------------------------------- /backend/src/image_util/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/Image.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_reader/LibRawReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_reader/LibRawReader.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_reader/LibRawThumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_reader/LibRawThumbnail.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_reader/LibTiffReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_reader/LibTiffReader.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_reader/TiffReaderOpenCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_reader/TiffReaderOpenCV.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_writer/ImageWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_writer/ImageWriter.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_writer/ImageWriterStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_writer/ImageWriterStrategy.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_writer/LibTiffWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_writer/LibTiffWriter.cpp -------------------------------------------------------------------------------- /backend/src/image_util/image_writer/LibpngWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/image_util/image_writer/LibpngWriter.cpp -------------------------------------------------------------------------------- /backend/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/main.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/color_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/color_patch.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/illuminants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/illuminants.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/ref_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/ref_data.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/ref_data_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/ref_data_array.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/standard_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/standard_observer.cpp -------------------------------------------------------------------------------- /backend/src/reference_data/white_points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/reference_data/white_points.cpp -------------------------------------------------------------------------------- /backend/src/server/communication_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/server/communication_obj.cpp -------------------------------------------------------------------------------- /backend/src/server/communicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/server/communicator.cpp -------------------------------------------------------------------------------- /backend/src/server/globals_singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/server/globals_singleton.cpp -------------------------------------------------------------------------------- /backend/src/server/process_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/server/process_manager.cpp -------------------------------------------------------------------------------- /backend/src/server/request_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/server/request_server.cpp -------------------------------------------------------------------------------- /backend/src/utils/calibration_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/calibration_util.cpp -------------------------------------------------------------------------------- /backend/src/utils/cmd_arg_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/cmd_arg_manager.cpp -------------------------------------------------------------------------------- /backend/src/utils/color_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/color_conversions.cpp -------------------------------------------------------------------------------- /backend/src/utils/csv_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/csv_parser.cpp -------------------------------------------------------------------------------- /backend/src/utils/general_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/general_utils.cpp -------------------------------------------------------------------------------- /backend/src/utils/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/json.cpp -------------------------------------------------------------------------------- /backend/src/utils/jsonafiable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/jsonafiable.cpp -------------------------------------------------------------------------------- /backend/src/utils/time_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/src/utils/time_tracker.cpp -------------------------------------------------------------------------------- /backend/test/nikon_raw_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/test/nikon_raw_test.html -------------------------------------------------------------------------------- /backend/test/thumbnail_binary_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/test/thumbnail_binary_image.html -------------------------------------------------------------------------------- /backend/test/thumbnail_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/test/thumbnail_test.html -------------------------------------------------------------------------------- /backend/vcpkg_first_time_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/vcpkg_first_time_setup.bat -------------------------------------------------------------------------------- /backend/win10_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/win10_debug.bat -------------------------------------------------------------------------------- /backend/win10_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/backend/win10_release.bat -------------------------------------------------------------------------------- /beyond-rgb-backend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/beyond-rgb-backend.vcxproj -------------------------------------------------------------------------------- /docs/resources/ArtObj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/ArtObj.png -------------------------------------------------------------------------------- /docs/resources/BackednProcess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/BackednProcess2.png -------------------------------------------------------------------------------- /docs/resources/BackendArchetecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/BackendArchetecture.png -------------------------------------------------------------------------------- /docs/resources/BackendProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/BackendProcess.png -------------------------------------------------------------------------------- /docs/resources/BackendSequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/BackendSequence.png -------------------------------------------------------------------------------- /docs/resources/PipelineComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/PipelineComponents.png -------------------------------------------------------------------------------- /docs/resources/Pipeline_drawio.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/Pipeline_drawio.drawio -------------------------------------------------------------------------------- /docs/resources/ResultsFormating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/ResultsFormating.png -------------------------------------------------------------------------------- /docs/resources/Rotation Math Intuition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/Rotation Math Intuition.jpg -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/BeyondRGB_under_the_hood.pptx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/BeyondRGB_under_the_hood.pptx.pdf -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/1-inputFormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/1-inputFormat.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/2-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/2-input.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/3-bitdepthScaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/3-bitdepthScaling.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/4-flatFielding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/4-flatFielding.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/5-calcXYZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/5-calcXYZ.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/PreProcessing/6-regestration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/PreProcessing/6-regestration.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/1-xyz2lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/1-xyz2lab.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/2-calcDeltaE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/2-calcDeltaE.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/3-colorTransformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/3-colorTransformation.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/4-colorTransformationContinued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/4-colorTransformationContinued.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/5-colorTransformationContinued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/5-colorTransformationContinued.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/6-spectralTransformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/6-spectralTransformation.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/7-spectralTransformationContinued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/7-spectralTransformationContinued.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Processing/8-spectralTransformationContinued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Processing/8-spectralTransformationContinued.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Rendering/1-computingColorManagedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Rendering/1-computingColorManagedImage.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Rendering/2-computingColorManagedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Rendering/2-computingColorManagedImage.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Rendering/3-RGB2xyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Rendering/3-RGB2xyz.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/SpectralPicking/1-spectralPicking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/SpectralPicking/1-spectralPicking.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Verification/1-accuracyOfColorTransformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Verification/1-accuracyOfColorTransformation.png -------------------------------------------------------------------------------- /docs/resources/UnderTheHood/Verification/2-accuracyOfSpectralTransformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/UnderTheHood/Verification/2-accuracyOfSpectralTransformation.png -------------------------------------------------------------------------------- /docs/resources/dynamicPipeline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/dynamicPipeline1.png -------------------------------------------------------------------------------- /docs/resources/dynamicPipeline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/dynamicPipeline2.png -------------------------------------------------------------------------------- /docs/resources/logos/Electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/logos/Electron.png -------------------------------------------------------------------------------- /docs/resources/logos/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/logos/cmake.png -------------------------------------------------------------------------------- /docs/resources/logos/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/logos/cpp.png -------------------------------------------------------------------------------- /docs/resources/logos/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/logos/svelte.png -------------------------------------------------------------------------------- /docs/resources/logos/vcpkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/logos/vcpkg.png -------------------------------------------------------------------------------- /docs/resources/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/docs/resources/pipeline.png -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/LICENSE -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/assets/icon.icns -------------------------------------------------------------------------------- /frontend/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/assets/icon.ico -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/Process/test.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/e2e/Process/test.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/home_page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/e2e/home_page.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/side_menu.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/e2e/side_menu.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/global.d.ts -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/release_frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/release_frontend.sh -------------------------------------------------------------------------------- /frontend/src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/main/index.js -------------------------------------------------------------------------------- /frontend/src/main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/main/preload.js -------------------------------------------------------------------------------- /frontend/src/renderer/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/App.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/Svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/Svelte.ts -------------------------------------------------------------------------------- /frontend/src/renderer/assets/RefDataTemplate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/assets/RefDataTemplate.csv -------------------------------------------------------------------------------- /frontend/src/renderer/assets/TextLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/assets/TextLogo.svg -------------------------------------------------------------------------------- /frontend/src/renderer/assets/TextLogoAlt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/assets/TextLogoAlt.svg -------------------------------------------------------------------------------- /frontend/src/renderer/components/About.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/About.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Button.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Card.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/AtomicHeatMap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/AtomicHeatMap.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/AtomicVectorChart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/AtomicVectorChart.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/HeatMap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/HeatMap.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/LineChart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/LineChart.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/LineChartMeasured.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/LineChartMeasured.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/LinearChart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/LinearChart.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Charts/VectorChart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Charts/VectorChart.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/CloseButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/CloseButton.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ConfirmDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ConfirmDialog.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Dropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Dropdown.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/EmptyState.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/EmptyState.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ExpandablePanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ExpandablePanel.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/FileSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/FileSelector.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ImageImporter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ImageImporter.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ImageRoleGrid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ImageRoleGrid.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ImageViewer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ImageViewer.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/LoadingOverlay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/LoadingOverlay.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Menu.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Modal.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Page.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/ColorTargetViewer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/ColorTargetViewer.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Dropbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Dropbox.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/ImageBubble.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/ImageBubble.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Layout.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/AdvOpts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/AdvOpts.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/BatchProcessingRoles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/BatchProcessingRoles.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/ColorTarget.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/ColorTarget.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/ImportImages.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/ImportImages.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/Processing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/Processing.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/SelectDest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/SelectDest.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/SelectProcessingType.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/SelectProcessingType.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Process/Tabs/SpecFileRoles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Process/Tabs/SpecFileRoles.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ProcessCompleteModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ProcessCompleteModal.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/RefDataModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/RefDataModal.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ScrollContainer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ScrollContainer.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/ServerError.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/ServerError.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/SortInfoModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/SortInfoModal.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/SpectralOverlay/SpectralCanvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/SpectralOverlay/SpectralCanvas.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/SpectralPicker/SpecPickViewer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/SpectralPicker/SpecPickViewer.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/Switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/Switch.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/SwitchRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/SwitchRow.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/components/TextInputRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/components/TextInputRow.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/pages/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/pages/Home.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/pages/Process.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/pages/Process.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/pages/Reports.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/pages/Reports.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/pages/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/pages/Settings.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/pages/SpectralPicker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/pages/SpectralPicker.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/styles/theme.css -------------------------------------------------------------------------------- /frontend/src/renderer/util/autoSortStandards.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/autoSortStandards.svelte -------------------------------------------------------------------------------- /frontend/src/renderer/util/cssUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/cssUtils.ts -------------------------------------------------------------------------------- /frontend/src/renderer/util/csvExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/csvExport.js -------------------------------------------------------------------------------- /frontend/src/renderer/util/lab2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/lab2rgb.js -------------------------------------------------------------------------------- /frontend/src/renderer/util/photoViewerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/photoViewerHelper.js -------------------------------------------------------------------------------- /frontend/src/renderer/util/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/stores.ts -------------------------------------------------------------------------------- /frontend/src/renderer/util/storesUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/storesUtil.ts -------------------------------------------------------------------------------- /frontend/src/renderer/util/stringCompare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/renderer/util/stringCompare.js -------------------------------------------------------------------------------- /frontend/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/src/types/index.d.ts -------------------------------------------------------------------------------- /frontend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/svelte.config.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/vcpkg.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/win10_release_frontend.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeyondRGB/Imaging-Art-beyond-RGB/HEAD/frontend/win10_release_frontend.bat --------------------------------------------------------------------------------