function h = target_board(  )
%UNTITLED Summary of this function goes here
%   Detailed explanation goes here

d = 12*2.54; % convert inches to cm
xdata = [-d d; -d d];
ydata = [-d -d; d d];
zdata = [0 0; 0 0];
im = imread('pat2s.jpg');
g = flipdim(im,1);
rgb = cat(3,g,g,g);
h = surface(xdata,ydata,zdata,rgb,'FaceColor','texturemap','EdgeColor','none');
end