X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Finterpolate%2Finterpolate.C;h=64fa589b188d109aef4ed3e7b28520977a4a9d94;hb=0d37fdc03a4c5eeffef41d15490ebc528079ea52;hp=7cede4ab986766b1edbec7bd02425f3d3e76aaf7;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/interpolate/interpolate.C b/cinelerra-5.1/plugins/interpolate/interpolate.C index 7cede4ab..64fa589b 100644 --- a/cinelerra-5.1/plugins/interpolate/interpolate.C +++ b/cinelerra-5.1/plugins/interpolate/interpolate.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #include "bcdisplayinfo.h" @@ -38,9 +38,9 @@ REGISTER_PLUGIN(InterpolatePixelsMain) -InterpolatePixelsOffset::InterpolatePixelsOffset(InterpolatePixelsWindow *window, - int x, - int y, +InterpolatePixelsOffset::InterpolatePixelsOffset(InterpolatePixelsWindow *window, + int x, + int y, int *output) : BC_ISlider(x, y, @@ -74,13 +74,13 @@ int InterpolatePixelsOffset::handle_event() InterpolatePixelsWindow::InterpolatePixelsWindow(InterpolatePixelsMain *client) : PluginClientWindow(client, - 200, - 100, - 200, - 100, + 200, + 100, + 200, + 100, 0) -{ - this->client = client; +{ + this->client = client; } InterpolatePixelsWindow::~InterpolatePixelsWindow() @@ -90,18 +90,18 @@ InterpolatePixelsWindow::~InterpolatePixelsWindow() void InterpolatePixelsWindow::create_objects() { int x = 10, y = 10; - + BC_Title *title; add_tool(title = new BC_Title(x, y, _("X Offset:"))); - add_tool(x_offset = new InterpolatePixelsOffset(this, + add_tool(x_offset = new InterpolatePixelsOffset(this, x + title->get_w() + 5, - y, + y, &client->config.x)); y += MAX(x_offset->get_h(), title->get_h()) + 5; add_tool(title = new BC_Title(x, y, _("Y Offset:"))); - add_tool(y_offset = new InterpolatePixelsOffset(this, + add_tool(y_offset = new InterpolatePixelsOffset(this, x + title->get_w() + 5, - y, + y, &client->config.y)); y += MAX(y_offset->get_h(), title->get_h()) + 5; @@ -167,7 +167,7 @@ InterpolatePixelsMain::~InterpolatePixelsMain() delete engine; } -const char* InterpolatePixelsMain::plugin_title() { return _("Interpolate Pixels"); } +const char* InterpolatePixelsMain::plugin_title() { return _("Interpolate Bayer"); } int InterpolatePixelsMain::is_realtime() { return 1; } @@ -242,9 +242,9 @@ int InterpolatePixelsMain::process_buffer(VFrame *frame, frame->get_params()->update("INTERPOLATEPIXELS_X", config.x); frame->get_params()->update("INTERPOLATEPIXELS_Y", config.y); - read_frame(frame, - 0, - start_position, + read_frame(frame, + 0, + start_position, frame_rate, get_use_opengl()); //frame->dump_params(); @@ -345,7 +345,7 @@ int InterpolatePixelsMain::handle_opengl() get_output()->bind_texture(0); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); - + get_output()->draw_texture(); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); @@ -372,7 +372,7 @@ int InterpolatePixelsMain::handle_opengl() InterpolatePixelsPackage::InterpolatePixelsPackage() : LoadPackage() { - + } @@ -400,6 +400,13 @@ void InterpolatePixelsUnit::process_package(LoadPackage *package) float color_matrix[9]; memcpy(color_matrix, server->color_matrix, sizeof(color_matrix)); +// printf("InterpolatePixelsUnit::process_package %d color_matrix=", __LINE__); +// for(int i = 0; i < 9; i++) +// { +// printf("%f ", color_matrix[i]); +// } +// printf("\n"); + y1 = MAX(y1, 1); y2 = MIN(y2, h - 1); @@ -440,7 +447,7 @@ void InterpolatePixelsUnit::process_package(LoadPackage *package) else // Top right pixel { - r = (prev_row[-components + RED] + + r = (prev_row[-components + RED] + prev_row[components + RED] + next_row[-components + RED] + next_row[components + RED]) / 4; @@ -451,9 +458,14 @@ void InterpolatePixelsUnit::process_package(LoadPackage *package) b = current_row[BLUE]; } - out_row[0] = r * color_matrix[0] + g * color_matrix[1] + b * color_matrix[2]; - out_row[1] = r * color_matrix[3] + g * color_matrix[4] + b * color_matrix[5]; - out_row[2] = r * color_matrix[6] + g * color_matrix[7] + b * color_matrix[8]; +// out_row[0] = r * color_matrix[0] + g * color_matrix[1] + b * color_matrix[2]; +// out_row[1] = r * color_matrix[3] + g * color_matrix[4] + b * color_matrix[5]; +// out_row[2] = r * color_matrix[6] + g * color_matrix[7] + b * color_matrix[8]; + + out_row[0] = r; + out_row[1] = g; + out_row[2] = b; + prev_row += components; current_row += components; next_row += components; @@ -473,7 +485,7 @@ void InterpolatePixelsUnit::process_package(LoadPackage *package) prev_row[GREEN] + current_row[components + GREEN] + next_row[GREEN]) / 4; - b = (prev_row[-components + BLUE] + + b = (prev_row[-components + BLUE] + prev_row[components + BLUE] + next_row[-components + BLUE] + next_row[components + BLUE]) / 4; @@ -486,9 +498,14 @@ void InterpolatePixelsUnit::process_package(LoadPackage *package) b = (prev_row[BLUE] + next_row[BLUE]) / 2; } - out_row[0] = r * color_matrix[0] + g * color_matrix[1] + b * color_matrix[2]; - out_row[1] = r * color_matrix[3] + g * color_matrix[4] + b * color_matrix[5]; - out_row[2] = r * color_matrix[6] + g * color_matrix[7] + b * color_matrix[8]; +// out_row[0] = r * color_matrix[0] + g * color_matrix[1] + b * color_matrix[2]; +// out_row[1] = r * color_matrix[3] + g * color_matrix[4] + b * color_matrix[5]; +// out_row[2] = r * color_matrix[6] + g * color_matrix[7] + b * color_matrix[8]; + + out_row[0] = r; + out_row[1] = g; + out_row[2] = b; + prev_row += components; current_row += components; next_row += components; @@ -514,8 +531,12 @@ void InterpolatePixelsEngine::init_packages() char string[BCTEXTLEN]; string[0] = 0; plugin->get_output()->get_params()->get("DCRAW_MATRIX", string); - sscanf(string, - "%f %f %f %f %f %f %f %f %f", + +// printf("InterpolatePixelsEngine::init_packages %d\n", __LINE__); +// plugin->get_output()->dump_params(); + + sscanf(string, + "%f %f %f %f %f %f %f %f %f", &color_matrix[0], &color_matrix[1], &color_matrix[2],