├── LICENSE ├── README.md ├── color-names.csv ├── dominant-colors-3d-color-space.pro ├── examples ├── 12-bit-rgb-4096-colors.png ├── 15-bit-rgb-32768-colors.png ├── 16-bit-rgb-65536-colors.png ├── 18-bit-rgb-262144-colors.png ├── 24-bit-rgb-16777216-pattern2.png ├── 256-colors.png ├── 3-bit-rgb-8-colors.png ├── 4-bit-rgb-16-colors.png ├── 6-bit-rgb-64-colors.png ├── 729-colors.png ├── 729-palette.csv ├── 9-bit-rgb-512-colors.png ├── ega-palette.png ├── joconda-palette.csv ├── joconda-quantized.png ├── joconda.jpg ├── painting-afremov-alley-by-the-lake.jpg ├── painting-boticelli-birth-of-venus.jpg ├── painting-coolidge-dogs-playing-poker.jpg ├── painting-dali-persistence-of-memory.jpg ├── painting-monet-sunrise.jpg ├── painting-munch-the-scream.jpg ├── painting-picasso-old-guitarist.jpg ├── painting-raja-ravi-varma-woman-with-lamp.jpg ├── painting-van-gogh-starry-night.jpg ├── painting-vermeer-girl-with-a-pearl-earring.jpg ├── photo-portrait-jeshina©absurdephoton.jpg ├── photo-portrait-nikola©absurdephoton.jpg └── photo-portrait-soizic©absurdephoton.jpg ├── icons ├── 3d-depth.png ├── 3d-quality.png ├── 3d-space.png ├── 3d-strip-triangles.png ├── 3d-widget.png ├── absurdephoton.png ├── axis-3d.png ├── color.png ├── combobox-arrow.png ├── compute.png ├── exit.png ├── help.png ├── image.png ├── light-off.png ├── light-on.png ├── load.png ├── lut.png ├── quit.png ├── save.png ├── sphere.png └── undo.png ├── lib ├── angles.cpp ├── angles.h ├── color-spaces.cpp ├── color-spaces.h ├── dominant-colors.cpp ├── dominant-colors.h ├── image-color.cpp ├── image-color.h ├── image-lut.cpp ├── image-lut.h ├── image-transform.cpp ├── image-transform.h ├── image-utils.cpp ├── image-utils.h └── randomizer.h ├── lut ├── 1D-BW-Bone.cube ├── 1D-Color-Amber.cube └── 3D-Color-Orange-Teal.cube ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── opengl-draw.cpp ├── opengl-draw.h ├── openglwidget.cpp ├── openglwidget.h ├── palette.h ├── resources.qrc ├── screenshots ├── exemple-color-space-hlab.jpg ├── exemple-color-space-hsv.jpg ├── exemple-color-space-hwb.jpg ├── exemple-color-space-lab.jpg ├── exemple-color-space-lms.jpg ├── exemple-color-space-luv.jpg ├── exemple-color-space-rgb.jpg ├── exemple-color-space-wheel.jpg ├── exemple-color-space-xyy.jpg ├── exemple-color-space-xyz.jpg ├── joconda-palette.png ├── joconda-quantized.jpg ├── screenshot-3d.jpg ├── screenshot-buttons.jpg ├── screenshot-color-space.jpg ├── screenshot-compute.jpg ├── screenshot-csv.jpg ├── screenshot-gui.jpg ├── screenshot-image.jpg └── screenshot-palette.jpg └── widgets ├── file-dialog.cpp └── file-dialog.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/README.md -------------------------------------------------------------------------------- /color-names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/color-names.csv -------------------------------------------------------------------------------- /dominant-colors-3d-color-space.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/dominant-colors-3d-color-space.pro -------------------------------------------------------------------------------- /examples/12-bit-rgb-4096-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/12-bit-rgb-4096-colors.png -------------------------------------------------------------------------------- /examples/15-bit-rgb-32768-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/15-bit-rgb-32768-colors.png -------------------------------------------------------------------------------- /examples/16-bit-rgb-65536-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/16-bit-rgb-65536-colors.png -------------------------------------------------------------------------------- /examples/18-bit-rgb-262144-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/18-bit-rgb-262144-colors.png -------------------------------------------------------------------------------- /examples/24-bit-rgb-16777216-pattern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/24-bit-rgb-16777216-pattern2.png -------------------------------------------------------------------------------- /examples/256-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/256-colors.png -------------------------------------------------------------------------------- /examples/3-bit-rgb-8-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/3-bit-rgb-8-colors.png -------------------------------------------------------------------------------- /examples/4-bit-rgb-16-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/4-bit-rgb-16-colors.png -------------------------------------------------------------------------------- /examples/6-bit-rgb-64-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/6-bit-rgb-64-colors.png -------------------------------------------------------------------------------- /examples/729-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/729-colors.png -------------------------------------------------------------------------------- /examples/729-palette.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/729-palette.csv -------------------------------------------------------------------------------- /examples/9-bit-rgb-512-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/9-bit-rgb-512-colors.png -------------------------------------------------------------------------------- /examples/ega-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/ega-palette.png -------------------------------------------------------------------------------- /examples/joconda-palette.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/joconda-palette.csv -------------------------------------------------------------------------------- /examples/joconda-quantized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/joconda-quantized.png -------------------------------------------------------------------------------- /examples/joconda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/joconda.jpg -------------------------------------------------------------------------------- /examples/painting-afremov-alley-by-the-lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-afremov-alley-by-the-lake.jpg -------------------------------------------------------------------------------- /examples/painting-boticelli-birth-of-venus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-boticelli-birth-of-venus.jpg -------------------------------------------------------------------------------- /examples/painting-coolidge-dogs-playing-poker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-coolidge-dogs-playing-poker.jpg -------------------------------------------------------------------------------- /examples/painting-dali-persistence-of-memory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-dali-persistence-of-memory.jpg -------------------------------------------------------------------------------- /examples/painting-monet-sunrise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-monet-sunrise.jpg -------------------------------------------------------------------------------- /examples/painting-munch-the-scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-munch-the-scream.jpg -------------------------------------------------------------------------------- /examples/painting-picasso-old-guitarist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-picasso-old-guitarist.jpg -------------------------------------------------------------------------------- /examples/painting-raja-ravi-varma-woman-with-lamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-raja-ravi-varma-woman-with-lamp.jpg -------------------------------------------------------------------------------- /examples/painting-van-gogh-starry-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-van-gogh-starry-night.jpg -------------------------------------------------------------------------------- /examples/painting-vermeer-girl-with-a-pearl-earring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/painting-vermeer-girl-with-a-pearl-earring.jpg -------------------------------------------------------------------------------- /examples/photo-portrait-jeshina©absurdephoton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/photo-portrait-jeshina©absurdephoton.jpg -------------------------------------------------------------------------------- /examples/photo-portrait-nikola©absurdephoton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/photo-portrait-nikola©absurdephoton.jpg -------------------------------------------------------------------------------- /examples/photo-portrait-soizic©absurdephoton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/examples/photo-portrait-soizic©absurdephoton.jpg -------------------------------------------------------------------------------- /icons/3d-depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/3d-depth.png -------------------------------------------------------------------------------- /icons/3d-quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/3d-quality.png -------------------------------------------------------------------------------- /icons/3d-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/3d-space.png -------------------------------------------------------------------------------- /icons/3d-strip-triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/3d-strip-triangles.png -------------------------------------------------------------------------------- /icons/3d-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/3d-widget.png -------------------------------------------------------------------------------- /icons/absurdephoton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/absurdephoton.png -------------------------------------------------------------------------------- /icons/axis-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/axis-3d.png -------------------------------------------------------------------------------- /icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/color.png -------------------------------------------------------------------------------- /icons/combobox-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/combobox-arrow.png -------------------------------------------------------------------------------- /icons/compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/compute.png -------------------------------------------------------------------------------- /icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/exit.png -------------------------------------------------------------------------------- /icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/help.png -------------------------------------------------------------------------------- /icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/image.png -------------------------------------------------------------------------------- /icons/light-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/light-off.png -------------------------------------------------------------------------------- /icons/light-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/light-on.png -------------------------------------------------------------------------------- /icons/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/load.png -------------------------------------------------------------------------------- /icons/lut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/lut.png -------------------------------------------------------------------------------- /icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/quit.png -------------------------------------------------------------------------------- /icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/save.png -------------------------------------------------------------------------------- /icons/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/sphere.png -------------------------------------------------------------------------------- /icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/icons/undo.png -------------------------------------------------------------------------------- /lib/angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/angles.cpp -------------------------------------------------------------------------------- /lib/angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/angles.h -------------------------------------------------------------------------------- /lib/color-spaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/color-spaces.cpp -------------------------------------------------------------------------------- /lib/color-spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/color-spaces.h -------------------------------------------------------------------------------- /lib/dominant-colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/dominant-colors.cpp -------------------------------------------------------------------------------- /lib/dominant-colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/dominant-colors.h -------------------------------------------------------------------------------- /lib/image-color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-color.cpp -------------------------------------------------------------------------------- /lib/image-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-color.h -------------------------------------------------------------------------------- /lib/image-lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-lut.cpp -------------------------------------------------------------------------------- /lib/image-lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-lut.h -------------------------------------------------------------------------------- /lib/image-transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-transform.cpp -------------------------------------------------------------------------------- /lib/image-transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-transform.h -------------------------------------------------------------------------------- /lib/image-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-utils.cpp -------------------------------------------------------------------------------- /lib/image-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/image-utils.h -------------------------------------------------------------------------------- /lib/randomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lib/randomizer.h -------------------------------------------------------------------------------- /lut/1D-BW-Bone.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lut/1D-BW-Bone.cube -------------------------------------------------------------------------------- /lut/1D-Color-Amber.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lut/1D-Color-Amber.cube -------------------------------------------------------------------------------- /lut/3D-Color-Orange-Teal.cube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/lut/3D-Color-Orange-Teal.cube -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /opengl-draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/opengl-draw.cpp -------------------------------------------------------------------------------- /opengl-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/opengl-draw.h -------------------------------------------------------------------------------- /openglwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/openglwidget.cpp -------------------------------------------------------------------------------- /openglwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/openglwidget.h -------------------------------------------------------------------------------- /palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/palette.h -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/resources.qrc -------------------------------------------------------------------------------- /screenshots/exemple-color-space-hlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-hlab.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-hsv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-hsv.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-hwb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-hwb.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-lab.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-lms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-lms.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-luv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-luv.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-rgb.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-wheel.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-xyy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-xyy.jpg -------------------------------------------------------------------------------- /screenshots/exemple-color-space-xyz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/exemple-color-space-xyz.jpg -------------------------------------------------------------------------------- /screenshots/joconda-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/joconda-palette.png -------------------------------------------------------------------------------- /screenshots/joconda-quantized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/joconda-quantized.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-3d.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-buttons.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-color-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-color-space.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-compute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-compute.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-csv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-csv.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-gui.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-image.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-palette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/screenshots/screenshot-palette.jpg -------------------------------------------------------------------------------- /widgets/file-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/widgets/file-dialog.cpp -------------------------------------------------------------------------------- /widgets/file-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbsurdePhoton/dominant-colors-3d-color-space/HEAD/widgets/file-dialog.h --------------------------------------------------------------------------------