Home > Source > Optimise > Others > optimise_groupwise.m

optimise_groupwise

PURPOSE ^

==============================================================

SYNOPSIS ^

function [param_list, warped_points, warped_image, score] = optimise_groupwise(ref_image, ref_points, unwarped_image, unwarped_points, spline_type, placement_method, n_points, verbose, do_plot, subplot_fig, pane, column, image_width, number_of_images, verbose_score, model_evaluation_method, n_modes, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel, precision_required)

DESCRIPTION ^

 ==============================================================
 OPTIMISE_GROUPWISE: Uses PDF's to minimise group-wise complexity

    GENERAL

      [param_list, warped_points, warped_image, score] = 
       optimise_groupwise(ref_image, ref_points, unwarped_image, 
       unwarped_points, spline_type, placement_method, n_points, 
       verbose, do_plot, subplot_fig, pane, column, image_width, 
       number_of_images, verbose_score, model_evaluation_method, 
       n_modes, weighting_normalisation_method, shape_weight, variation_kept)

 
    INPUT/S

      -X:
          X
           
    OUTPUT/S

      -X:
           X

    PENDING WORK
      
      

    KNOWN BUG/S

      

    COMMENT/S

      

    RELATED FUNCTION/S

      

    ABOUT

      -Created:     February 9th, 2004
      -Last update: February 2004
      -Revision:    0.1.0
      -Author:      R. S. Schestowitz, University of Manchester
 ==============================================================

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [param_list, warped_points, warped_image, score] = optimise_groupwise(ref_image, ref_points, unwarped_image, unwarped_points, spline_type, placement_method, n_points, verbose, do_plot, subplot_fig, pane, column, image_width, number_of_images, verbose_score, model_evaluation_method, n_modes, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel, precision_required)
0002 % ==============================================================
0003 % OPTIMISE_GROUPWISE: Uses PDF's to minimise group-wise complexity
0004 %
0005 %    GENERAL
0006 %
0007 %      [param_list, warped_points, warped_image, score] =
0008 %       optimise_groupwise(ref_image, ref_points, unwarped_image,
0009 %       unwarped_points, spline_type, placement_method, n_points,
0010 %       verbose, do_plot, subplot_fig, pane, column, image_width,
0011 %       number_of_images, verbose_score, model_evaluation_method,
0012 %       n_modes, weighting_normalisation_method, shape_weight, variation_kept)
0013 %
0014 %
0015 %    INPUT/S
0016 %
0017 %      -X:
0018 %          X
0019 %
0020 %    OUTPUT/S
0021 %
0022 %      -X:
0023 %           X
0024 %
0025 %    PENDING WORK
0026 %
0027 %
0028 %
0029 %    KNOWN BUG/S
0030 %
0031 %
0032 %
0033 %    COMMENT/S
0034 %
0035 %
0036 %
0037 %    RELATED FUNCTION/S
0038 %
0039 %
0040 %
0041 %    ABOUT
0042 %
0043 %      -Created:     February 9th, 2004
0044 %      -Last update: February 2004
0045 %      -Revision:    0.1.0
0046 %      -Author:      R. S. Schestowitz, University of Manchester
0047 % ==============================================================
0048 
0049 [grid, steps] = setup_grid(2, unwarped_image, ref_points, placement_method, n_points);
0050 
0051 if (do_plot),
0052   figure(subplot_fig);
0053   subplot(number_of_images, column, pane, 'replace');
0054   plot(unwarped_image);
0055   axis([0 image_width 0 1]);
0056   drawnow;
0057 end
0058 
0059 warp_params.green = 'biharmCPS';
0060 param_list = [];
0061 start_image = unwarped_image;
0062 start_points = unwarped_points;
0063 %last_score = msd(ref_image, unwarped_image);
0064 if(strcmp(spline_type,'single_point'))
0065   last_score = eval_groupwise_single_point(zeros(size(grid)),grid, steps, unwarped_image, unwarped_points, ref_image, ref_points, n_modes, start_points, model_evaluation_method, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel);
0066   [params, score] = fminsearch(@eval_groupwise_single_point,zeros(size(grid)),optimset('Display',verbose,'TolX', precision_required),grid,steps,start_image, start_points, ref_image, ref_points, n_modes, start_points, model_evaluation_method, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel);
0067   param_list(size(param_list,1)+1).d = params;
0068   [dummy,start_points] = eval_groupwise_single_point(params,grid,steps, start_image, start_points, ref_image, ref_points, n_modes, start_points, model_evaluation_method, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel);
0069   start_image = interp1(unwarped_points,unwarped_image,start_points, 'linear',0); 
0070 elseif(strcmp(spline_type,'multi_point'))
0071   warped_grid = grid;
0072   warp_params.green = 'biharmCPS';
0073   last_score = eval_groupwise_multi_point(zeros(size(grid)),grid, unwarped_image, unwarped_points, ref_image, ref_points, n_modes, start_points, warp_params, model_evaluation_method, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel);
0074   [params, score] = fminsearch(@eval_groupwise_multi_point,zeros(size(grid)),optimset('Display',verbose,'TolX', precision_required),grid, unwarped_image, unwarped_points, ref_image, ref_points, n_modes, start_points, warp_params, model_evaluation_method, weighting_normalisation_method, shape_weight, variation_kept, pdf_evalution_method, kernel);
0075   param_list(size(param_list,1)+1,:).d = params;
0076   warped_grid = grid + params;
0077   start_points = nrr_trans_1d(start_points, grid, warped_grid, warp_params,[]);
0078   start_image = interp1(unwarped_points,unwarped_image,start_points, 'linear',0);
0079 else
0080   error('Unknown spline type');  
0081 end
0082 
0083 
0084 if (verbose_score == 1),
0085     disp(['Initial score: ',num2str(last_score),' Final score: ', num2str(score), ' Difference: ', num2str(last_score - score)]);
0086 end
0087 
0088 warped_points = start_points;
0089 warped_image = start_image;
0090 
0091 
0092 if (do_plot),
0093   figure(subplot_fig);
0094   subplot(number_of_images, column ,pane, 'replace');
0095   plot(warped_image);
0096   axis([0 image_width 0 1]);
0097   title(num2str(score));
0098   drawnow;
0099 end

Generated on Thu 13-May-2004 18:00:46 by m2html © 2003