mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
46b252b221
Autopano analyses two or more images and automatically generates control points - coordinates in the images where the views overlap. This can be fed to hugin which then stitches the files together and enblend which combines the colors to remove seam lines. WWW: http://user.cs.tu-berlin.de/~nowozin/autopano-sift/ - Add entry to LEGAL: The use of this software is restricted by certain conditions. See the "LICENSE" file distributed with the program for details. The University of British Columbia has applied for a patent on the SIFT algorithm in the United States. Commercial applications of this software may require a license from the University of British Columbia. PR: 95746 Submitted by: J.R. Oldroyd <fbsd@opal.com> Maintained by: Carlos E. G. Carvalho <cartola@openit.com.br>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
--- util/Makefile.orig Sat Jan 15 11:33:38 2005
|
|
+++ util/Makefile Tue Apr 11 14:14:54 2006
|
|
@@ -36,8 +36,8 @@
|
|
#SOURCES=GUIImage.cs DrawingPrimitives.cs BasicImagingInterface.cs
|
|
|
|
all: autopano.exe showone.exe showtwo.exe generatekeys.exe generatekeys-sd.exe
|
|
- make $(MAKE_OPTIONS) -C autopanog all
|
|
- make $(MAKE_OPTIONS) -C autopano-win32 all
|
|
+ $(MAKE) $(MAKE_OPTIONS) -C autopanog all
|
|
+ $(MAKE) $(MAKE_OPTIONS) -C autopano-win32 all
|
|
|
|
autopano.exe: Autopano.cs DrawingPrimitives.cs BasicImagingInterface.cs GUIImage-Drawing.cs
|
|
$(CSC) $(CSCFLAGS) /out:autopano.exe Autopano.cs \
|
|
@@ -50,7 +50,7 @@
|
|
|
|
generatekeys-sd.exe:
|
|
mv generatekeys.exe generatekeys-gtk.exe
|
|
- make -C . systemdrawing=yes generatekeys.exe
|
|
+ $(MAKE) -C . systemdrawing=yes generatekeys.exe
|
|
mv generatekeys.exe generatekeys-sd.exe
|
|
mv generatekeys-gtk.exe generatekeys.exe
|
|
|
|
@@ -65,6 +65,6 @@
|
|
|
|
clean:
|
|
rm -f *.exe
|
|
- make $(MAKE_OPTIONS) -C autopanog/ clean
|
|
- make $(MAKE_OPTIONS) -C autopano-win32/ clean
|
|
+ $(MAKE) $(MAKE_OPTIONS) -C autopanog/ clean
|
|
+ $(MAKE) $(MAKE_OPTIONS) -C autopano-win32/ clean
|
|
|