1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
|
/*
* Copyright (c) 2009-2016, Albertas Vyšniauskas
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* * Neither the name of the software author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "PaletteFromImage.h"
#include "../ColorList.h"
#include "../ColorObject.h"
#include "../uiUtilities.h"
#include "../uiListPalette.h"
#include "../GlobalState.h"
#include "../ToolColorNaming.h"
#include "../DynvHelpers.h"
#include "../Internationalisation.h"
#include <string.h>
#include <iostream>
#include <sstream>
#include <stack>
#include <string>
using namespace std;
/** \file PaletteFromImage.cpp
* \brief
*/
/** \struct Node
* \brief Node is a cube in space with color information
*
* Each node can b
*/
typedef struct Node{
uint32_t n_pixels; /**< Number of colors in current Node and its children */
uint32_t n_pixels_in; /**< Number of colors in current Node */
float color[3]; /**< Sum of color values */
float distance; /**< Squared distances from Node center of colors in Node */
Node *child[8]; /**< Pointers to child Nodes */
Node *parent; /**< Pointer to parent Node */
}Node;
/** \struct Cube
* \brief Cube structure holds all information necessary to define cube size and position in space
*/
typedef struct Cube{
float x; /**< X position */
float w; /**< Width */
float y; /**< Y position */
float h; /**< Height */
float z; /**< Z position */
float d; /**< Depth */
}Cube;
typedef struct PaletteFromImageArgs{
GtkWidget *file_browser;
GtkWidget *range_colors;
GtkWidget *merge_threshold;
GtkWidget *preview_expander;
string filename;
uint32_t n_colors;
string previous_filename;
Node *previous_node;
ColorList *color_list;
ColorList *preview_color_list;
struct dynvSystem *params;
GlobalState* gs;
}PaletteFromImageArgs;
class PaletteColorNameAssigner: public ToolColorNameAssigner {
protected:
stringstream m_stream;
const char *m_filename;
int m_index;
public:
PaletteColorNameAssigner(GlobalState *gs):
ToolColorNameAssigner(gs)
{
m_index = 0;
}
void assign(ColorObject *color_object, const Color *color, const char *filename, const int index)
{
m_filename = filename;
m_index = index;
ToolColorNameAssigner::assign(color_object, color);
}
virtual std::string getToolSpecificName(ColorObject *color_object, const Color *color)
{
m_stream.str("");
m_stream << m_filename << " #" << m_index;
return m_stream.str();
}
};
/**
* Allocate and initialize a new node with specified parent
* @param[in] parent Parent node
* @return New node
*/
static Node* node_new(Node *parent){
Node *n = new Node;
n->color[0] = n->color[1] = n->color[2] = 0;
n->distance = 0;
n->n_pixels = 0;
n->n_pixels_in = 0;
n->parent = parent;
for (int i = 0; i < 8; i++){
n->child[i] = 0;
}
return n;
}
/**
* Deallocate node and its children
* @param[in] node Node to deallocate
*/
static void node_delete(Node *node){
for (int i = 0; i < 8; i++){
if (node->child[i]){
node_delete(node->child[i]);
}
}
delete node;
}
/**
* Copy node and assing new parent
* @param[in] node Node to copy
* @param[in] parent Parent of copied node
* @return A copy of node
*/
static Node* node_copy(Node *node, Node *parent){
Node *n = node_new(0);
memcpy(n, node, sizeof(Node));
n->parent = parent;
for (int i = 0; i < 8; i++){
if (node->child[i]){
n->child[i] = node_copy(node->child[i], n);
}else{
n->child[i] = 0;
}
}
return n;
}
/**
* Get the number of nodes with available color information in them
* @param[in] node Start from this node
* @return Number of nodes with available color information in them
*/
static uint32_t node_count_leafs(Node *node){
uint32_t r = 0;
if (node->n_pixels_in) r++;
for (int i = 0; i < 8; i++){
if (node->child[i])
r += node_count_leafs(node->child[i]);
}
return r;
}
/**
* Call callback on all nodes with available color information in them
* @param[in] node Start from this node
* @param[in] leaf_cb Callback function
* @param[in] userdata User supplied pointer which is passed when calling callback
*/
static void node_leaf_callback(Node *node, void (*leaf_cb)(Node* node, void* userdata), void* userdata){
if (node->n_pixels_in > 0) leaf_cb(node, userdata);
for (int i = 0; i < 8; i++){
if (node->child[i])
node_leaf_callback(node->child[i], leaf_cb, userdata);
}
}
/**
* Merge node information into its parent node
* @param[in] node Node to merge
*/
static void node_prune(Node *node){
for (int i = 0; i < 8; i++){
if (node->child[i]){
node_prune(node->child[i]);
node->child[i] = 0;
}
}
if (node->parent){
node->parent->n_pixels_in += node->n_pixels_in;
node->parent->color[0] += node->color[0];
node->parent->color[1] += node->color[1];
node->parent->color[2] += node->color[2];
}
node_delete(node);
}
typedef struct PruneData{
float threshold;
float min_distance;
uint32_t n_colors;
uint32_t n_colors_target;
Node *prune_node;
uint32_t distant_nodes;
}PruneData;
static bool node_prune_threshold(Node *node, PruneData *prune_data){
if (node->distance <= prune_data->threshold){
uint32_t colors_removed = node_count_leafs(node);
node_prune(node);
prune_data->n_colors -= colors_removed;
return true;
}
if (node->distance < prune_data->min_distance){
prune_data->min_distance = node->distance;
}
uint32_t n = node->n_pixels_in;
for (int i = 0; i < 8; i++){
if (node->child[i]){
if (node_prune_threshold(node->child[i], prune_data)){
node->child[i] = 0;
}
}
}
if (node->n_pixels_in > 0 && n == 0) prune_data->n_colors++;
return false;
}
static void node_reduce(Node *node, uint32_t colors){
PruneData prune_data;
prune_data.n_colors = node_count_leafs(node);
prune_data.n_colors_target = colors;
prune_data.threshold = 0;
while (prune_data.n_colors > colors){
prune_data.min_distance = node->distance;
if (node_prune_threshold(node, &prune_data)) break;
prune_data.threshold = prune_data.min_distance;
}
}
static void node_update(Node *node, Color *color, Cube *cube, uint32_t max_depth){
Cube new_cube;
new_cube.w = cube->w / 2;
new_cube.h = cube->h / 2;
new_cube.d = cube->d / 2;
node->n_pixels++;
node->distance += (color->xyz.x - (cube->x + new_cube.w)) * (color->xyz.x - (cube->x + new_cube.w)) +
(color->xyz.y - (cube->y + new_cube.h)) * (color->xyz.y - (cube->y + new_cube.h)) +
(color->xyz.z - (cube->z + new_cube.d)) * (color->xyz.z - (cube->z + new_cube.d));
if (!max_depth){
node->n_pixels_in++;
node->color[0] += color->xyz.x;
node->color[1] += color->xyz.y;
node->color[2] += color->xyz.z;
}else{
int x, y, z;
if (color->xyz.x - cube->x < new_cube.w)
x = 0;
else
x = 1;
if (color->xyz.y - cube->y < new_cube.h)
y = 0;
else
y = 1;
if (color->xyz.z - cube->z < new_cube.d)
z = 0;
else
z = 1;
new_cube.x = cube->x + new_cube.w * x;
new_cube.y = cube->y + new_cube.h * y;
new_cube.z = cube->z + new_cube.d * z;
int i = x | (y<<1) | (z<<2);
if (!node->child[i])
node->child[i] = node_new(node);
node->n_pixels++;
node_update(node->child[x | (y<<1) | (z<<2)], color, &new_cube, max_depth - 1);
}
}
static void leaf_cb(Node *node, void *userdata){
list<Color> *l = static_cast<list<Color>*>(userdata);
Color c;
c.xyz.x = node->color[0] / node->n_pixels_in;
c.xyz.y = node->color[1] / node->n_pixels_in;
c.xyz.z = node->color[2] / node->n_pixels_in;
l->push_back(c);
}
static Node* process_image(PaletteFromImageArgs *args, const char *filename, Node* node){
if (args->previous_filename == filename){
if (args->previous_node)
return node_copy(args->previous_node, 0);
else
return 0;
}
args->previous_filename = filename;
if (args->previous_node){
node_delete(args->previous_node);
args->previous_node = 0;
}
GError *error = nullptr;
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(filename, &error);
if (error){
cout << error->message << endl;
g_error_free(error);
return 0;
}
int channels = gdk_pixbuf_get_n_channels(pixbuf);
int width = gdk_pixbuf_get_width(pixbuf);
int height = gdk_pixbuf_get_height(pixbuf);
int rowstride = gdk_pixbuf_get_rowstride(pixbuf);
guchar *image_data = gdk_pixbuf_get_pixels(pixbuf);
guchar *ptr = image_data;
Cube cube;
cube.x = 0;
cube.y = 0;
cube.z = 0;
cube.w = 1;
cube.h = 1;
cube.d = 1;
Color color;
args->previous_node = node_new(0);
for (int y = 0; y < height; y++){
ptr = image_data + rowstride * y;
for (int x = 0; x < width; x++){
color.xyz.x = ptr[0] / 255.0;
color.xyz.y = ptr[1] / 255.0;
color.xyz.z = ptr[2] / 255.0;
node_update(args->previous_node, &color, &cube, 5);
ptr += channels;
}
}
g_object_unref(pixbuf);
node_reduce(args->previous_node, 200);
return node_copy(args->previous_node, 0);
}
static void get_settings(PaletteFromImageArgs *args){
gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(args->file_browser));
if (filename){
args->filename = filename;
g_free(filename);
}else{
args->filename.clear();
}
args->n_colors = gtk_spin_button_get_value(GTK_SPIN_BUTTON(args->range_colors));
}
static void save_settings(PaletteFromImageArgs *args){
dynv_set_int32(args->params, "colors", args->n_colors);
gchar *current_folder = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(args->file_browser));
if (current_folder){
dynv_set_string(args->params, "current_folder", current_folder);
g_free(current_folder);
}
GtkFileFilter *filter = gtk_file_chooser_get_filter(GTK_FILE_CHOOSER(args->file_browser));
if (filter){
const char *filter_name = static_cast<const char*>(g_object_get_data(G_OBJECT(filter), "name"));
dynv_set_string(args->params, "filter", filter_name);
}
}
static void calc(PaletteFromImageArgs *args, bool preview, int limit){
Node *root_node = 0;
int index = 0;
gchar *name = g_path_get_basename(args->filename.c_str());
PaletteColorNameAssigner name_assigner(args->gs);
if (!args->filename.empty())
root_node = process_image(args, args->filename.c_str(), root_node);
ColorList *color_list;
if (preview)
color_list = args->preview_color_list;
else
color_list = args->gs->getColorList();
list<Color> tmp_list;
if (root_node){
node_reduce(root_node, args->n_colors);
node_leaf_callback(root_node, leaf_cb, &tmp_list);
node_delete(root_node);
}
for (list<Color>::iterator i = tmp_list.begin(); i != tmp_list.end(); i++){
ColorObject *color_object = color_list_new_color_object(color_list, &(*i));
name_assigner.assign(color_object, &(*i), name, index);
color_list_add_color_object(color_list, color_object, 1);
color_object->release();
index++;
}
}
static void update(GtkWidget *widget, PaletteFromImageArgs *args ){
color_list_remove_all(args->preview_color_list);
get_settings(args);
calc(args, true, 100);
}
static gchar* format_threshold_value_cb(GtkScale *scale, gdouble value){
return g_strdup_printf("%0.01f%%", value);
}
static void destroy_cb(GtkWidget* widget, PaletteFromImageArgs *args){
if (args->previous_node) node_delete(args->previous_node);
color_list_destroy(args->preview_color_list);
dynv_system_release(args->params);
delete args;
}
static void response_cb(GtkWidget* widget, gint response_id, PaletteFromImageArgs *args){
get_settings(args);
save_settings(args);
gint width, height;
gtk_window_get_size(GTK_WINDOW(widget), &width, &height);
dynv_set_int32(args->params, "window.width", width);
dynv_set_int32(args->params, "window.height", height);
dynv_set_bool(args->params, "show_preview", gtk_expander_get_expanded(GTK_EXPANDER(args->preview_expander)));
switch (response_id){
case GTK_RESPONSE_APPLY:
calc(args, false, 0);
break;
case GTK_RESPONSE_DELETE_EVENT:
break;
case GTK_RESPONSE_CLOSE:
gtk_widget_destroy(widget);
break;
}
}
void tools_palette_from_image_show(GtkWindow* parent, GlobalState* gs)
{
PaletteFromImageArgs *args = new PaletteFromImageArgs;
args->previous_filename = "";
args->gs = gs;
args->params = dynv_get_dynv(args->gs->getSettings(), "gpick.tools.palette_from_image");
args->previous_node = 0;
GtkWidget *table, *table_m, *widget;
GtkWidget *dialog = gtk_dialog_new_with_buttons(_("Palette from image"), parent, GtkDialogFlags(GTK_DIALOG_DESTROY_WITH_PARENT), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, GTK_STOCK_ADD, GTK_RESPONSE_APPLY, nullptr);
gtk_window_set_default_size(GTK_WINDOW(dialog), dynv_get_int32_wd(args->params, "window.width", -1),
dynv_get_int32_wd(args->params, "window.height", -1));
gtk_dialog_set_alternative_button_order(GTK_DIALOG(dialog), GTK_RESPONSE_APPLY, GTK_RESPONSE_CLOSE, -1);
GtkWidget *frame;
gint table_y, table_m_y;
table_m = gtk_table_new(3, 1, FALSE);
table_m_y = 0;
frame = gtk_frame_new(_("Image"));
gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE);
gtk_table_attach(GTK_TABLE(table_m), frame, 0, 1, table_m_y, table_m_y+1, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL), 5, 5);
table_m_y++;
table = gtk_table_new(5, 3, FALSE);
table_y=0;
gtk_container_add(GTK_CONTAINER(frame), table);
args->file_browser = widget = gtk_file_chooser_button_new(_("Image file"), GTK_FILE_CHOOSER_ACTION_OPEN);
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(widget), dynv_get_string_wd(args->params, "current_folder", ""));
gtk_table_attach(GTK_TABLE(table), widget, 0, 3, table_y, table_y+1, GtkAttachOptions(GTK_FILL | GTK_EXPAND),GTK_FILL,3,3);
g_signal_connect(G_OBJECT(args->file_browser), "file-set", G_CALLBACK(update), args);
table_y++;
const char* selected_filter = dynv_get_string_wd(args->params, "filter", "all_images");
GtkFileFilter *filter;
GtkFileFilter *all_image_filter;
filter = gtk_file_filter_new();
gtk_file_filter_set_name(filter, _("All files"));
gtk_file_filter_add_pattern(filter, "*");
g_object_set_data_full(G_OBJECT(filter), "name", (void*)"all_files", GDestroyNotify(nullptr));
gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(widget), filter);
if (g_strcmp0("all_files", selected_filter) == 0) gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(widget), filter);
all_image_filter = gtk_file_filter_new();
gtk_file_filter_set_name(all_image_filter, _("All images"));
g_object_set_data_full(G_OBJECT(all_image_filter), "name", (void*)"all_images", GDestroyNotify(nullptr));
gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(widget), all_image_filter);
if (g_strcmp0("all_images", selected_filter) == 0) gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(widget), all_image_filter);
stringstream ss;
GSList *formats = gdk_pixbuf_get_formats();
GSList *i = formats;
while (i){
GdkPixbufFormat *format = static_cast<GdkPixbufFormat*>(g_slist_nth_data(i, 0));
filter = gtk_file_filter_new();
gtk_file_filter_set_name(filter, gdk_pixbuf_format_get_description(format));
gchar **extensions = gdk_pixbuf_format_get_extensions(format);
if (extensions){
for (int j = 0; extensions[j]; j++){
ss.str("");
ss << "*." << extensions[j];
gtk_file_filter_add_pattern(filter, ss.str().c_str());
gtk_file_filter_add_pattern(all_image_filter, ss.str().c_str());
}
g_strfreev(extensions);
}
g_object_set_data_full(G_OBJECT(filter), "name", gdk_pixbuf_format_get_name(format), GDestroyNotify(nullptr));
gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(widget), filter);
if (g_strcmp0(gdk_pixbuf_format_get_name(format), selected_filter) == 0) gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(widget), filter);
i = g_slist_next(i);
}
if (formats) g_slist_free(formats);
frame = gtk_frame_new(_("Options"));
gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE);
gtk_table_attach(GTK_TABLE(table_m), frame, 0, 1, table_m_y, table_m_y+1, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL), 5, 5);
table_m_y++;
table = gtk_table_new(5, 3, FALSE);
table_y=0;
gtk_container_add(GTK_CONTAINER(frame), table);
gtk_table_attach(GTK_TABLE(table), gtk_label_aligned_new(_("Colors:"),0,0,0,0),0,1,table_y,table_y+1,GtkAttachOptions(GTK_FILL),GTK_FILL,5,5);
args->range_colors = widget = gtk_spin_button_new_with_range (1, 100, 1);
gtk_spin_button_set_value(GTK_SPIN_BUTTON(args->range_colors), dynv_get_int32_wd(args->params, "colors", 3));
gtk_table_attach(GTK_TABLE(table), widget,1,3,table_y,table_y+1,GtkAttachOptions(GTK_FILL | GTK_EXPAND),GTK_FILL,3,3);
g_signal_connect(G_OBJECT(args->range_colors), "value-changed", G_CALLBACK(update), args);
table_y++;
ColorList* preview_color_list = nullptr;
gtk_table_attach(GTK_TABLE(table_m), args->preview_expander = palette_list_preview_new(gs, true, dynv_get_bool_wd(args->params, "show_preview", true), gs->getColorList(), &preview_color_list), 0, 1, table_m_y, table_m_y+1 , GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL | GTK_EXPAND), 5, 5);
table_m_y++;
args->preview_color_list = preview_color_list;
gtk_widget_show_all(table_m);
gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), table_m);
g_signal_connect(G_OBJECT(dialog), "destroy", G_CALLBACK(destroy_cb), args);
g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(response_cb), args);
gtk_widget_show(dialog);
}
|