Informacja

Drogi użytkowniku, aplikacja do prawidłowego działania wymaga obsługi JavaScript. Proszę włącz obsługę JavaScript w Twojej przeglądarce.

Wyszukujesz frazę "pattern" wg kryterium: Temat


Tytuł:
Classification, Association and Pattern Completion Using Neural Similarity Based Methods
Autorzy:
Duch, W.
Adamczak, R.
Diercksen, G. H. F.
Powiązania:
https://bibliotekanauki.pl/articles/911147.pdf
Data publikacji:
2000
Wydawca:
Uniwersytet Zielonogórski. Oficyna Wydawnicza
Tematy:
sieć neuronowa
klasyfikacja
rozpoznawanie obrazów
neural networks
classification
association
pattern recognition
Opis:
A framework for Similarity-Based Methods (SBMs) includes many classification models as special cases: neural networks of the Radial Basis Function type, Feature Space Mapping neurofuzzy networks based on separable transfer functions, Learning Vector Quantization, variants of the k nearest neighbor methods and several new models that may be presented in a network form. Multilayer Perceptrons (MLPs) use scalar products to compute a weighted activation of neurons, combining soft hyperplanes to provide decision borders. Distance-based multilayer perceptrons (D-MLPs) evaluate the similarity of inputs to weights offering a natural generalization of standard MLPs. A cluster- based initialization procedure determining the architecture and values of all adaptive parameters is described. Networks implementing SBM methods are useful not only for classification and approximation, but also as associative memories, in problems requiring pattern completion, offering an efficient way to deal with missing values. Non-Euclidean distance functions may also be introduced by normalization of the input vectors in an extended feature space. Both the approaches dramatically influence the shapes of decision borders. An illustrative example showing these changes is provided.
Źródło:
International Journal of Applied Mathematics and Computer Science; 2000, 10, 4; 747-766
1641-876X
2083-8492
Pojawia się w:
International Journal of Applied Mathematics and Computer Science
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Circle parameters estimation using Hough transform implemented on GPGPU
Estymacja parametrów okręgu z wykorzystaniem transformaty Hougha dla GPGPU
Autorzy:
Mazurek, P.
Powiązania:
https://bibliotekanauki.pl/articles/155064.pdf
Data publikacji:
2011
Wydawca:
Stowarzyszenie Inżynierów i Techników Mechaników Polskich
Tematy:
estymacja
rozpoznawanie obrazów
transformata Hough'a
GPGPU
estimation
pattern recognition
Hough transform
Opis:
In the paper implementation of the Hough transform using NVidia CUDA platform is considered. The GPGPU implementation is based on processing in parallel a set of Hough transforms with synchronized memory accesses for better utilization of the texture cache. The best code variant is based on quadrature sine and cosine functions, an unrolled loop and a single write to the global memory. The processing time is about 1000 shorter in comparison to the Matlab code, which is necessary for processing the video data.
W artykule rozpatruje się implementację transformaty Hougha [1] dla okręgów (1). Celem implementacji jest skrócenia czasu przetwarzania wielu obrazów o dużej rozdzielczości na potrzeby estymacji położenia i promienia półsferycznego próbnika oświetlenia stosowanego [3] podczas pomiarów światła na potrzeby realistycznej grafiki i animacji komputerowej (rys. 1). Kolorowy obraz przetwarzany jest za pomocą algorytmu [2] (rys. 3), a w celu redukcji czasu przetwarzania skoncentrowano się na wykorzystaniu platformy NVidia CUDA 3.2 [5, 6] do równoległej realizacji transformaty Hougha [7-12]. Wykorzystano oryginalną konfigurację bloków wątków oraz siatki w celu efektywnego wykorzystania pamięci podręcznej tekstur przy równoległym próbkowaniu obrazu. W implementacji 32 wątki bloku wykonują transformatę Hougha pobierając wartości obrazu z pierścienia w sposób synchroniczny w celu optymalizacji wykorzystania pamięci tekstur. Porównano 14 metod wyznaczania (tab. 1) próbkowanego piksela. Porównano metodę zapisu wyniku najlepszego dla bloku z wykorzystaniem jednego i wszystkich wątków. Najbardziej efektywnym rozwiązaniem jest wykorzystanie funkcji kwadraturowej wraz z rozwijaniem pętli i pojedynczym zapisem. Dla procesora G80 (Geforce 8800 GTS) uzyskano 1000-krotne przyspieszenie obliczeń w stosunku do kodu w Matlabie wykonywanego na procesorze Pentium 4 (2.4GHz). Dla 32 sąsiednich promieni i 100 próbek każdego okręgu czas przetwarzania jest rzędu 1 sekundy.
Źródło:
Pomiary Automatyka Kontrola; 2011, R. 57, nr 8, 8; 896-898
0032-4140
Pojawia się w:
Pomiary Automatyka Kontrola
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Optymalizacja transformaty Hougha dla okręgu z wykorzystaniem techniki odrzucenia implementowana na GPGPU
Optimization of Hough transform for circle processing using drop technique implemented on GPGPU
Autorzy:
Mazurek, P.
Powiązania:
https://bibliotekanauki.pl/articles/156591.pdf
Data publikacji:
2012
Wydawca:
Stowarzyszenie Inżynierów i Techników Mechaników Polskich
Tematy:
estymacja
rozpoznawanie obrazów
transformata Hough'a
GPGPU
estimation
pattern recognition
Hough transform
Opis:
W artykule jest przedstawiona implementacja transformaty Hougha (HT) dla okręgów z wykorzystaniem platformy CUDA. Wykorzystano zbiór równolegle przetwarzaniach HT z synchronizacją dostępu do pamięci podręcznej tekstur. Zaproponowane rozwiązanie umożliwia przyspieszenie obliczeń o około 16% z wykorzystaniem techniki odrzucenia (dwu etapowej wyznaczania HT) względem algorytmu naiwnego. Celem pracy jest estymacja położenia i kołnierza lustra półsferycznego do pomiaru oświetlenia.
Implementation of the Hough transform (HT) [1] using NVidia CUDA 4.0 platform [5, 6] is considered. The aim is fast estimation of the position and radius of a light probe. The light probe device is e.g. a hemispherical mirror (Fig. 1) used for light estimation in some points of the 3D space [3, 4] for purposes of computer animation. The GPGPU based implementation allows parallel computation of the HT. Direct implementation tests all cases, which is not computationally time feasible. Knowledge about the number of desired circles (a single circle) simplifies searching. The naive algorithm (Fig. 4) tests circles and compares temporal results with the best HT. This technique is not fast due to testing temporal HT values for every circle pixel. The proposed drop technique (Fig. 5) is based on the predefined angle threshold. The first step computes HT values up to the predefined angle threshold. The temporal result is compared with the best obtained HT value. The computations are continued (second step) if the temporal result is better than the best HT, or dropped otherwise. After the second step the comparison is calculated again. Preprocessing of the input image is necessary according to [3] and negative representation is used. The computation time depends on the number of the circle sampling points and threshold. The threshold influences the computation time. The value about 200 for the tested image is optimal. There has been obtained improvement of about 16% for the drop technique.
Źródło:
Pomiary Automatyka Kontrola; 2012, R. 58, nr 7, 7; 587-589
0032-4140
Pojawia się w:
Pomiary Automatyka Kontrola
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
New trends in airport noise monitoring systems
Nowe trendy w systemach monitoringu lotniczego
Autorzy:
Wszołek, W.
Batko, W.
Powiązania:
https://bibliotekanauki.pl/articles/328123.pdf
Data publikacji:
2009
Wydawca:
Polska Akademia Nauk. Polskie Towarzystwo Diagnostyki Technicznej PAN
Tematy:
przetwarzanie sygnałów
sztuczna inteligencja
rozpoznawanie obrazów
signal processing
artificial intelligence
pattern recognition
Opis:
The identification process of acoustic events related to airport operations was assisted, in the existing monitoring systems, by joining noise monitoring stations with radar stations. Due to difficulties occurring in this communication system the equipment of the monitoring stations with tools allowing to recognise and classify independently the monitored noise source - will be advantageous. The concept of the application of advanced methods and techniques of artificial intelligence as analytical tools at monitoring noises originated by air traffic - is presented in the hereby paper.
W obecnych systemach monitoringu proces identyfikacji zdarzeń akustycznych związanych z funkcjonowaniem lotniska był wspomagany poprzez połączenie stacji monitoringu hałasu ze stacjami radarowymi. Z uwagi na występujące trudności w tym systemie łączności korzystnym byłoby wyposażenie stacji monitoringu w narzędzia pozwalające samodzielnie rozpoznawać i klasyfikować monitorowane źródło hałasu. W tej pracy przedstawiono koncepcję wykorzystania zaawansowanych metod i technik sztucznej inteligencji wykorzystywanych jako narzędzie analityczne przy monitorowaniu hałasu wywoływanego przez ruch lotniczy.
Źródło:
Diagnostyka; 2009, 2(50); 41-45
1641-6414
2449-5220
Pojawia się w:
Diagnostyka
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Porównanie i ocena metod klasyfikacji sygnałów EEG
Analysis and classification of EEG data. An evaluation of methods
Autorzy:
Rutkowski, G.
Patan, K.
Powiązania:
https://bibliotekanauki.pl/articles/154847.pdf
Data publikacji:
2012
Wydawca:
Stowarzyszenie Inżynierów i Techników Mechaników Polskich
Tematy:
EEG
sztuczne sieci neuronowe
rozpoznawanie obrazów
klasyfikacja
artificial neural networks
pattern recognition
classification
Opis:
Analiza i interpretacja sygnałów elektroencefalograficznych znalazła szerokie spektrum zastosowań w diagnostyce klinicznej. Pomimo licznych doświadczeń specjalistów, ciągle napotyka się wiele trudności. Powstające problemy związane są m.in. z aspektami technicznymi co spowodowane jest charakterem niestacjonarności w przypadku sygnałów takich jak sygnały EEG. Rozwiązania sprzętowe i programowe w tej dziedzinie są poddawane ciągłej poprawie ze względu na rozwój technologiczny. Bardzo obiecującym narzędziem w analizie i interpretacji sygnałów EEG są sztuczne sieci neuronowe. W pracy przedstawiono eksperymenty oparte o analizę i klasyfikację danych biomedycznych za pomocą różnych technik, w tym metod klasycznych takich jak naiwny klasyfikator Bayesa, k najbliższych sąsiadów z zastosowaniem metod sztucznej inteligencji takich jak klasyfikatory SVM czy perceptron wielowarstwowy.
Analysis and interpretation methods of electroencephalogram signals have found a broad spectrum of applications in clinical diagnosis. Despite the experience of professionals, biomedical data analysis encounters many difficulties. Measurement problems are associated with both the technical ground that determines the character of non-stationarity of EEG signals and the individual nature of a neurological dysfunction. The existing hardware and software have been continuously improved due to the rapid progress of technological development. Very promising tool in the analysis and interpretation of the EEG signals are artificial neural networks. An electroencephalogram (EEG) is a noninvasive technique for measurement of processes occurring in the human brain. This technique allows direct measurement of electrical potentials of neuronal activity. EEG is thus recording of electrical activity of nerve cells on the surface of the cerebral cortex. Seizures are very important element in clinical diagnosis due to the ongoing search for causal link in generating sudden discharges of electricity. The interpretation of such signals may allow for appropriate treatment and selection of relevant therapy for individual cases. There have been many works in the area of electroencephalography which used artificial neural networks involving among the others in the process of recognizing specific graphoelements, which in turn indicate a definite neurological dysfunction. Neural networks are also able to extract the relevant information contained in the EEG signals and support the process of solving problems, such as the identification of characteristic EEG [1, 5, 6] patterns or determine patterns based on spectral EEG topography [3]. Neural networks are also used to identify artifacts, where inputs to the classifier are implemented in the form of selected parameters of a specific wave length [10]. The paper presents experiments based on the analysis and classification of biomedical data using various techniques, including classical methods such as naive Bayes classifiers, and nearest neighbor using artificial intelligence methods including SVM classifiers and multilayer perceptron.
Źródło:
Pomiary Automatyka Kontrola; 2012, R. 58, nr 4, 4; 369-371
0032-4140
Pojawia się w:
Pomiary Automatyka Kontrola
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Rozpoznawanie obrazów z wykorzystaniem neuronowego klasyfikatora NBV
Pattern recognition using NBV neural classifier
Autorzy:
Dybała, J.
Powiązania:
https://bibliotekanauki.pl/articles/327664.pdf
Data publikacji:
2009
Wydawca:
Polska Akademia Nauk. Polskie Towarzystwo Diagnostyki Technicznej PAN
Tematy:
rozpoznawanie obrazów
sztuczna sieć neuronowa
klasyfikator neuronowy
pattern recognition
artificial neural network
neural classifier
Opis:
W artykule przedstawiono neuronowy klasyfikator NBV o konstrukcji inspirowanej strukturą sieci neuronowej CP (ang. Counter Propagation), który wykorzystuje koncepcję stosowaną w klasyfikacji minimalnoodległościowej, a w swym działaniu nawiązuje do idei funkcjonowania klasyfikatorów SVM (ang. Support Vector Machine).
The article presents the NBV neural classifier whose structure has been inspired by the structure of CP (Counter Propagation) neural network, which uses the methods applied in the minimum-distance classification, while in its operation it draws on the idea of functioning of SVM (Support Vector Machines) classifiers.
Źródło:
Diagnostyka; 2009, 3(51); 105-112
1641-6414
2449-5220
Pojawia się w:
Diagnostyka
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
One-Dimensional Kohonens Lvq Nets for Multidimensional Patterns Recognition
Autorzy:
Skubalska-Rafajłowicz, E.
Powiązania:
https://bibliotekanauki.pl/articles/911149.pdf
Data publikacji:
2000
Wydawca:
Uniwersytet Zielonogórski. Oficyna Wydawnicza
Tematy:
krzywa przestrzenna
rozpoznawanie obrazów
space-filling curve
pattern recognition
learning vector quantization
reduction of dimension
Opis:
A new neural network based pattern recognition algorithm is proposed. The method consists in preprocessing the multidimensional data, using a space-filling curve based transformation into the unit interval, and employing Kohonen's vector quantization algorithms (of SOM and LVQ types) in one dimension. The space-filling based transformation preserves the theoretical Bayes risk. Experiments show that such an approach can produce good or even better error rates than the classical LVQ performed in a multidimensional space.
Źródło:
International Journal of Applied Mathematics and Computer Science; 2000, 10, 4; 767-778
1641-876X
2083-8492
Pojawia się w:
International Journal of Applied Mathematics and Computer Science
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Kompresja JPG obrazu sonarowego z uwzględnieniem założonego poziomu błędu
JPG compression of sonar image with taking into account an assumed level of error
Autorzy:
Borawski, M.
Powiązania:
https://bibliotekanauki.pl/articles/209939.pdf
Data publikacji:
2011
Wydawca:
Wojskowa Akademia Techniczna im. Jarosława Dąbrowskiego
Tematy:
rozpoznawanie obrazów
sonar
obraz sonarowy
kompresja JPG
GeoTiff
pattern recognition sonar
sonar image
JPG compression
Opis:
W artykule zaprezentowano dwie metody kompresji danych z sonaru wykorzystujące algorytm JPG. Umożliwiają one uzyskanie określonego odchylenia standardowego dla bloków obrazu będącego różnicą obrazu skompresowanego i nieskompresowanego oraz zapewniają utrzymanie się w granicach założonego błędu kompresji. Zaprezentowane metody zmieniają tylko sposób kompresji, dekompresja pozostaje bez zmian. Dzięki temu obraz poddany działaniu tych metod może być dekompresowany przez każdy program służący do tego celu. Dla obrazów sonarowych jest to szczególnie ważne ze względu na możliwość wykorzystania kompresji JPG w standardzie GeoTiff pozwalającym na zapis informacji o współrzędnych geograficznych i orientacji względem północy obrazu sonarowego.
In the article, two types of sonar data compression were presented. They both use the JPG algorithm. Thanks to them, it is possible to obtain the standard deviation for blocks of an image, which is a result of compressed and uncompressed image subtraction. They let to stay in the range of assumed compression error level as well. Instead of DCT transform, used in JPG compression, its orthonormal version was used. It allows us to use the properties of invariance of vector length in orthogonal coordinate system. Thanks to that, to determine the error of compression, calculation of reverse DCT transform is not needed. Presented methods change only the way of compression and not the decompression itself. It allows us to use any decompressing software with images compressed by these methods. For sonar images it is very important, because of the possibility of using the JPG compression in GeoTiff standard, allowing us to memorize the information about geographic coordinates and orientation in relation to the north direction of sonar image. Presented methods were compared with Jpg, Jpg2000 and fractal compression for chosen sonar images. The coefficients PSNR and SSI M were used. By the same size of files after the compression, the presented methods give lower quality of image, however, only they allow us to obtain the maximum value of error which is close to predicted one. The excess of this error is a result of rounding errors. For Jpg, Jpg2000 and fractal compression, the maximum error was exceeded several times.
Źródło:
Biuletyn Wojskowej Akademii Technicznej; 2011, 60, 3; 227-245
1234-5865
Pojawia się w:
Biuletyn Wojskowej Akademii Technicznej
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
System-level implementation of a partial pattern matching algorithm
Implementacja algorytmu porównywania binarnych obrazów PPMA na poziomie systemowym
Autorzy:
Frejlichowski, D.
Dziurzański, P.
Powiązania:
https://bibliotekanauki.pl/articles/155574.pdf
Data publikacji:
2007
Wydawca:
Stowarzyszenie Inżynierów i Techników Mechaników Polskich
Tematy:
rozpoznawanie obrazów
deskryptory kształtu
SystemC
projektowanie na poziomie systemowym
pattern recognition
shape descriptors
system-level design
Opis:
In this paper, we describe Partial Point Matching Algorithm (PPMA) for binary images matching and provide some information about a developed SystemC system-level hardware implementation model. We present some data obtained from a cycle accurate simulator taking into account computation and routing delays of a target FPGA chip and compare it with its software counterparts.
W artykule opisano algorytm częściowego dopasowywania z użyciem punktów do porównywania obrazów binarnych i przedstawiono opracowany model na poziomie systemowym w języku SystemC. Zaprezentowano dane otrzymane z symulatora pracującego na poziomie dokładności co do cyklu zegarowego, biorącego pod uwagę opóźnienia bramek i rutingu, oraz porównano go z jego programowym odpowiednikiem.
Źródło:
Pomiary Automatyka Kontrola; 2007, R. 53, nr 7, 7; 128-130
0032-4140
Pojawia się w:
Pomiary Automatyka Kontrola
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Próba wykorzystania sieci neuronowych w kompleksowej interpretacji danych elektromagnetycznych na przykładzie złoża Grabownica
An attempt to apply artificial neural networks in integrated interpretation of electromagnetic data - the Grabownica hydrocarbon deposit case study
Autorzy:
Mastej, W.
Powiązania:
https://bibliotekanauki.pl/articles/183525.pdf
Data publikacji:
2011
Wydawca:
Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie. Wydawnictwo AGH
Tematy:
rozpoznawanie obrazów
sztuczne sieci neuronowe
magnetotelluryka
złoża węglowodorów
pattern recognition
artificial neural networks
magnetotellurics
hydrocarbon deposits
Opis:
W pracy przedstawiono próbę zastosowania metody rozpoznawania obrazów z użyciem sztucznych sieci neuronowych w kompleksowej interpretacji danych z sondowań magnetotellurycznych AMT (Audio-frequency Magnetotellurics) i CSAMT (Controlled Source Audio-frequency Magnetotellurics) ze złoża ropy i gazu Grabownica (dipol podłużny i poprzeczny względem linii profili pomiarowych). Obiektami klasyfikacji były pionowe pasy z przekrojów magnetotellurycznych, o szerokości 50 m, utworzone na bazie siatek interpolacyjnych. Strukturę obiektów formalnie niestrukturalnych wymuszono częściowo poprzez ich podział na: przypowierzchniową, wysokooporową strefę do 200 m n.p.m., strefę niskooporowych utworów uszczelniających oraz słabych maksimów - kominów dyfuzyjnych, od 200 do -100 m n.p.m. i najniższą, wysokooporową strefę złoża. Prawidłowe wskazanie rzeczywistych stref złożowych na bazie informacji pochodzących z często niejasnych i rozbieżnych między sobą obrazów z przekrojów magnetotellurycznych, świadczą o przydatności tej metody. Wskazano także dwie nieznane strefy złożowe w NE części przekroju G4 i w SW części przekroju G2.
The paper presents an attempt to apply the pattern recognition method using artificial neural networks in integrated interpretation of the magnetotelluric data AMT (Audio-frequency Magnetotellurics) and CSAMT (Controlled Source Audio-frequency Magnetotellurics), acquired from the Grabownica oil and gas deposit (longitudinal and transversal dipole in relation to measurement profile lines). Vertical belts of magnetotelluric cross-sections, each 50 m wide, obtained from interpolation grids, were the objects of classification. The structure of formally non-structural objects was partly imposed through division into: near-surface high-resistivity zone, to 200 m a.s.l., low-resistivity screens and week maxima - diffusion chimneys, from 200 to -100 m a.s.l., and the lowest, high-resistivity deposit zone. The usefulness of the method was proven by correct identification of real deposit zones based on data often coming from ambiguous and incompatible magnetotelluric cross-sections. In addition, two unknown deposit zones were discovered in NE part of cross-section G4 and SW part of cross-section G2.
Źródło:
Geologia / Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie; 2011, 37, 1; 157-173
0138-0974
Pojawia się w:
Geologia / Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Selection of the most important components from multispectral images for detection of tumor tissue
Autorzy:
Michalak, M.
Świtoński, A.
Stawarz, M.
Powiązania:
https://bibliotekanauki.pl/articles/951663.pdf
Data publikacji:
2011
Wydawca:
Uniwersytet Śląski. Wydział Informatyki i Nauki o Materiałach. Instytut Informatyki. Zakład Systemów Komputerowych
Tematy:
rozpoznawanie obrazów
analiza wielospektralna
obniżenie wymiarowości
wybór funkcji
pattern recognition
multispectral analysis
dimensionality reduction
feature selection
Opis:
The problem raised in this article is the selection of the most important components from multispectral images for the purpose of skin tumor tissue detection. It occured that 21 channel spectrum makes it possible to separate healthy and tumor regions almost perfectly. The disadvantage of this method is the duration of single picture acquisition because this process requires to keep the device very stable. In the paper two approaches to the problem are presented: hill climbing strategy and some ranking methods.
Źródło:
Journal of Medical Informatics & Technologies; 2011, 17; 303-308
1642-6037
Pojawia się w:
Journal of Medical Informatics & Technologies
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
The ability to fault detection in the injection system marine diesel engine using chosen method pattern recognition
Możliwość detekcji uszkodzeń układu wtryskowego okrętowego silnika tłokowego z wykorzystaniem wybranej metody rozpoznawania obrazów
Autorzy:
Witkowski, K.
Powiązania:
https://bibliotekanauki.pl/articles/132924.pdf
Data publikacji:
2013
Wydawca:
Polskie Towarzystwo Naukowe Silników Spalinowych
Tematy:
fault detection
pattern recognition
injection system
marine diesel engine
detekcja uszkodzeń
rozpoznawanie obrazów
układ wtryskowy
okrętowy silnik tłokowy
Opis:
The paper describes the possibility and advisability of using chosen method pattern recognition in the diagnosis injection system of marine diesel engine. It has been shown the desirability of using one of the methods of deterministic pattern recognition, defined as a method of measuring the distance from the pattern. This method belongs to the group "metric recognition methods", which are based on the assumption that the current image of the technical condition of object is close to one of the known symptoms of fault. The current condition of the object is described by a set of diagnostic parameters values and identified faults is also described such sets of parameters. The possibility of using the presented method has been shown to detect faults injection system elements, basing on the results of research the marine diesel engine.
W artykule przeanalizowano możliwości i celowość wykorzystania wybranej metody rozpoznawania obrazów w diagnostyce układu wtryskowego silnika okrętowego. Wykazano celowość wykorzystania jednej z deterministycznych metod rozpoznawania obrazów, definiowanej jako metoda pomiaru odległości od wzorca. Należy ona do grupy metrycznych metod rozpoznawania, które są oparte na założeniu, że aktualny obraz stanu technicznego obiektu opisany wartościami parametrów diagnostycznych jest bliski jednemu ze znanych, typowych objawów uszkodzenia. Bieżący stan obiektu jest opisany przez zbiór wartości parametrów diagnostycznych i znane uszkodzenia również opisuje taki zbiór parametrów o odpowiednich wartościach. Możliwość praktycznego stosowania tej metody w detekcji uszkodzeń elementów układu wtryskowego, wykazano w oparciu o badania przeprowadzone na okrętowym silniku tłokowym.
Źródło:
Combustion Engines; 2013, 52, 3; 367-370
2300-9896
2658-1442
Pojawia się w:
Combustion Engines
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Classification in the Gabor time-frequency domain of non-stationary signals embedded in heavy noise with unknown statistical distribution
Autorzy:
Świercz, E.
Powiązania:
https://bibliotekanauki.pl/articles/907771.pdf
Data publikacji:
2010
Wydawca:
Uniwersytet Zielonogórski. Oficyna Wydawnicza
Tematy:
sygnał niestacjonarny
klasyfikacja sygnału
rozpoznawanie obrazów
transformator czas-częstotliwość
non-stationary signals
signal classification
pattern recognition
time-frequency transforms
Opis:
A new supervised classification algorithm of a heavily distorted pattern (shape) obtained from noisy observations of nonstationary signals is proposed in the paper. Based on the Gabor transform of 1-D non-stationary signals, 2-D shapes of signals are formulated and the classification formula is developed using the pattern matching idea, which is the simplest case of a pattern recognition task. In the pattern matching problem, where a set of known patterns creates predefined classes, classification relies on assigning the examined pattern to one of the classes. Classical formulation of a Bayes decision rule requires a priori knowledge about statistical features characterising each class, which are rarely known in practice. In the proposed algorithm, the necessity of the statistical approach is avoided, especially since the probability distribution of noise is unknown. In the algorithm, the concept of discriminant functions, represented by Frobenius inner products, is used. The classification rule relies on the choice of the class corresponding to the max discriminant function. Computer simulation results are given to demonstrate the effectiveness of the new classification algorithm. It is shown that the proposed approach is able to correctly classify signals which are embedded in noise with a very low SNR ratio. One of the goals here is to develop a pattern recognition algorithm as the best possible way to automatically make decisions. All simulations have been performed in Matlab. The proposed algorithm can be applied to non-stationary frequency modulated signal classification and non-stationary signal recognition.
Źródło:
International Journal of Applied Mathematics and Computer Science; 2010, 20, 1; 135-147
1641-876X
2083-8492
Pojawia się w:
International Journal of Applied Mathematics and Computer Science
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Cost-sensitive classifier ensemble for medical decision support system
Autorzy:
Woźniak, M.
Zmyślony, M.
Powiązania:
https://bibliotekanauki.pl/articles/333365.pdf
Data publikacji:
2011
Wydawca:
Uniwersytet Śląski. Wydział Informatyki i Nauki o Materiałach. Instytut Informatyki. Zakład Systemów Komputerowych
Tematy:
klasyfikacja wrażliwa cenowo
systemy wielo-klasyfikatora
rozpoznawanie obrazów
algorytm genetyczny
cost-sensitive classification
multiple classifier systems
pattern recognition
genetic algorithm
Opis:
Multiple classifier systems are currently the focus of intense research. In this conceptual approach, the main effort focuses on establishing decision on the basis of a set of individual classifiers' outputs. This approach is well known but usually most of propositions do not take exploitation cost of such a classifier under consideration. The paper deals with the problem how to take a test acquisition cost during classification task under the framework of combined approach on board. The problem is known as cost-sensitive classification and it has been usually considered for the decision tree induction. In this work we adapt mentioned above idea into choosing members of classifier ensemble and propose a method of choosing a pool of individual classifiers which take into consideration on the one hand quality of ensemble on the other hand cost of classification. Properties of mentioned concept are established during computer experiments conducted on chosen medical benchmark databases from UCI Machine Learning Repository.
Źródło:
Journal of Medical Informatics & Technologies; 2011, 17; 97-104
1642-6037
Pojawia się w:
Journal of Medical Informatics & Technologies
Dostawca treści:
Biblioteka Nauki
Artykuł
Tytuł:
Klasyfikacja tekstur za pomocą SVM - Maszyny Wektorów Wspierających
Texture classification using Support Vector Machine
Autorzy:
Goszczyński, J.
Powiązania:
https://bibliotekanauki.pl/articles/289416.pdf
Data publikacji:
2006
Wydawca:
Polskie Towarzystwo Inżynierii Rolniczej
Tematy:
maszyna wektorów wspierających
rozpoznawanie wzorców
rozpoznawanie obrazów
rolniczy robot mobilny
support vector machine (SVM)
pattern recognition
image recognition
agriculture mobile robot
Opis:
Motywacją do badań był pomysł wytworzenia robota-kosiarki wyposażonego w system komputerowego widzenia. Rozpoznawanie obrazu może zostać zrealizowane za pomocą klasyfikacji tekstur obiektów, które otaczają robota. Artykuł przedstawia przykład klasyfikacji tekstur za pomocą Maszyny wektorów wspierających SVM (ang. Support Vector Machine) Do badań wykorzystano oprogramowanie LIBSVM.
Motivation for research was idea to create mower robot with computer vision system. Image recognition can be done by textures classification of objects that robot is surrounded. This article has reviewed example of texture classification by SVM Support vector machine. For research was used LIBSVM software.
Źródło:
Inżynieria Rolnicza; 2006, R. 10, nr 13(88), 13(88); 119-126
1429-7264
Pojawia się w:
Inżynieria Rolnicza
Dostawca treści:
Biblioteka Nauki
Artykuł

Ta witryna wykorzystuje pliki cookies do przechowywania informacji na Twoim komputerze. Pliki cookies stosujemy w celu świadczenia usług na najwyższym poziomie, w tym w sposób dostosowany do indywidualnych potrzeb. Korzystanie z witryny bez zmiany ustawień dotyczących cookies oznacza, że będą one zamieszczane w Twoim komputerze. W każdym momencie możesz dokonać zmiany ustawień dotyczących cookies