]> git.pld-linux.org Git - packages/autopano-sift.git/blame_incremental - autopano-sift.spec
- converted to UTF-8
[packages/autopano-sift.git] / autopano-sift.spec
... / ...
CommitLineData
1# NOTE: libsift is also available separately at
2# http://user.cs.tu-berlin.de/~nowozin/libsift/
3# it should be separate package when other packages use it
4%include /usr/lib/rpm/macros.mono
5Summary: SIFT Feature Detection implementation
6Summary(pl.UTF-8): Implementacja algorytmu SIFT do wykrywania cech obrazu
7Name: autopano-sift
8Version: 2.4
9Release: 2
10License: GPL, but SIFT algorithm may require license in some countries
11Group: X11/Applications/Graphics
12Source0: http://user.cs.tu-berlin.de/~nowozin/autopano-sift/%{name}-%{version}.tar.gz
13# Source0-md5: e497074d0cb5586cdc66506d782ccbd7
14URL: http://user.cs.tu-berlin.de/~nowozin/autopano-sift/
15# uses {glib,atk,gdk,gtk,glade}-sharp
16BuildRequires: dotnet-gtk-sharp-devel >= 1.0
17BuildRequires: mono-csharp >= 1.0
18BuildRequires: rpmbuild(monoautodeps)
19Requires: dotnet-gtk-sharp >= 1.0
20Requires: libgdiplus >= 1.0
21ExclusiveArch: %{ix86} %{x8664} arm hppa ppc s390
22ExcludeArch: i386
23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25%description
26The SIFT algorithm provides the capability to identify key feature
27points within arbitrary images. It further extracts highly distinct
28information for each such point and allows to characterize the point
29invariant to a number of modifications to the image. It is invariant
30to contrast/brightness changes, to rotation, scaling and partially
31invariant to other kinds of transformations. The algorithm can be
32flexibly used to create input data for image matching, object
33identification and other computer vision related algorithms.
34
35This package provides an implementation of the SIFT algorithm and a
36set of utilities to utilize the algorithm to match two or more images.
37As output, a number of control points are created, which specify one
38and the same image location in two images. The output is created as
39project file for the hugin panorama stitching software, which is
40available in hugin package.
41
42%description -l pl.UTF-8
43Algorytm SIFT daje możliwość określenia kluczowych punktów
44charakterystycznych na dowolnych zdjęciach. Następnie wydobywa
45informacje wyodrębniające dla każdego takiego punktu i pozwala
46scharakteryzować ten punkt niezależnie od liczby modyfikacji obrazu.
47Jest niezależny od zmian kontrastu/jasności, obrotów, skalowania i
48częściowo niezależny od innych rodzajów przekształceń. Algorytm może
49być elastycznie używany do tworzenia danych wejściowych do
50dopasowywania obrazów, identyfikowania obiektów i innych algorytmów
51związanych z grafiką komputerową.
52
53Ten pakiet dostarcza implementację algorytmu SIFT i zestaw narzędzi
54wykorzystujących ten algorytm do dopasowywania dwóch lub większej
55liczby zdjęć. Na wyjściu tworzony jest zbiór punktów kontrolnych
56określających to samo miejsce na dwóch zdjęciach. Wyjście jest
57tworzone w formacie pliku projektu dla programu do sklejania panoram
58hugin, dostępnego w pakiecie o tej samej nazwie.
59
60%prep
61%setup -q
62
63%build
64%{__make} -C src
65
66%install
67rm -rf $RPM_BUILD_ROOT
68install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir},%{_mandir}/man{1,7}}
69
70install src/libsift.dll $RPM_BUILD_ROOT%{_libdir}
71install src/bin/autopano-complete.sh $RPM_BUILD_ROOT%{_bindir}
72install src/util/{autopano,generatekeys,generatekeys-sd,showone,showtwo}.exe \
73 $RPM_BUILD_ROOT%{_bindir}
74install src/util/monoopt.sh $RPM_BUILD_ROOT%{_bindir}
75install src/util/autopanog/autopanog.exe $RPM_BUILD_ROOT%{_bindir}
76install src/util/man/{autopano-complete,autopano,autopanog,generatekeys,showone,showtwo}.1 \
77 $RPM_BUILD_ROOT%{_mandir}/man1
78install src/util/man/autopano-sift.7 $RPM_BUILD_ROOT%{_mandir}/man7
79
80%clean
81rm -rf $RPM_BUILD_ROOT
82
83%files
84%defattr(644,root,root,755)
85%doc CHANGES README
86%attr(755,root,root) %{_bindir}/*.sh
87# blegh, cannot be run directly (caught by WINE in PLD)
88%attr(755,root,root) %{_bindir}/*.exe
89%{_libdir}/libsift.dll
90%{_mandir}/man1/*
91%{_mandir}/man7/autopano-sift.7*
This page took 0.235307 seconds and 4 git commands to generate.