Example index.html file. This would go in the root webserver directory. Be sure to update the path for the <a href...> to match the path of each of the modules.
<H2>Landmarks</H2> <BR> <a href=static/landmarks/en/c060a58b6cfa20b0061596da81e39ba44613fc7f>landmarks</a> <BR><BR> This is designed to use LMRK_DISPLAY1.pgm to aid alignment in lithos. You click on a key feature, then for all the other images, you click and drag the feature to the red dot. The text will tell you the x and y to type into lithos, option 1, 1, \<Img#\> <BR> You need to convert the pgm file into a jpg and place it in the server path<BR><BR> convert LMRK_DISPLAY.pgm /Library/WebServer/Documents/data/landmarks.jpg <H2>Register</H2> <a href=static/register/en/6e8d913aa39e3819e83e7be94ed83fd51a6433a5>register</a> <BR><BR> Here you just click on the same feature in both images. The red dot is for the source image, while the green dot is for the shape model. The text tells you what to type in for register<BR><BR> convert TEMPFILE.pgm /Library/WebServer/Documents/data/register.jpg <H2>Autoregister</H2> <a href=static/autoregister/en/0e54b8496c154e89464d2dda0274662cf1235735>autoregister</a> <BR><BR> Here you just click on the same feature in both images. The red dot is for the source image, while the green dot is for the shape model. The text tells you what to type in for register<BR><BR> convert LMRK_DISPLAY.pgm /Library/WebServer/Documents/data/autoregister.jpg <BR><BR> <H4>Helpful script</H4> You can run this script in the background when you are doing a lot of work. Every second, it will update the images used in the programs from your directory. <BR> <UL>Note - if your internet connection is slow, you might need to increase the sleep delay</UL> <pre> #!/bin/bash while [ 1 ] do convert LMRK_DISPLAY1.pgm /Library/WebServer/Documents/data/landmarks.jpg convert LMRK_DISPLAY1.pgm /Library/WebServer/Documents/data/autoregister.jpg convert TEMPFILE.pgm /Library/WebServer/Documents/data/register.jpg sleep 5 done </pre> </body> </htdoc>