Created at 6pm, Jan 4
TZgeVzxcArtificial Intelligence
2
Image Processing
I6tVkrpqv-c9hH3ygcH5nTy4_yHTJ3Dr-ikAJuB4k-M
File Type
PDF
Entry Count
10
Embed. Model
jina_embeddings_v2_base_en
Index Type
hnsw

Basic knowledge for image procesisng

Image Sensing Incoming energy lands on a sensor material responsive to that type of energy and this generates a voltage Collections of sensors are arranged to capture images Imaging Sensor Line of Image Sensors Array of Image Sensors ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Image Sampling And Quantisation A digital sensor can only measure a limited number of samples at a discrete set of energy levels Quantisation is the process of converting a continuous analogue signal into a digital representation of this signal ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Image Sampling And Quantisation ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Image Sampling And Quantisation ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i
id: 7cee6b0495c90efce206c5614b8fdab2 - page: 21
Spatial Resolution The spatial resolution of an image is determined by how sampling was carried out Spatial resolution simply refers to the smallest discernable detail in an image Vision specialists will often talk about pixel size Graphic designers will talk about dots per inch (DPI) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Spatial Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Spatial Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Spatial Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Spatial Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D
id: f3764d03558e4ddf59d5a604e377b19f - page: 30
The big question with resolution is always how much is enough? This all depends on what is in the image and what you would like to do with it Key questions include Does the image look aesthetically pleasing? Can you see what you need to see within the image?
id: 42b1f29351b0e79cb630b82bb6b5381d - page: 44
Resolution: How Much Is Enough? (cont) The picture on the right is fine for counting the number of cars, but not for reading the number plate ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Intensity Level Resolution (cont) Low Detail Medium Detail High Detail ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Intensity Level Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Intensity Level Resolution (cont) ) 2 0 0 2 ( g n s s e c o r i P e g a m I l a t i g D i , s d o o W & z e a z n o G m o r f l n e k a t s e g a m I Intensity Level Resolution (cont)
id: d3a356d0ccfa80f857fa6366e8ffb2ab - page: 49
How to Retrieve?
# Search

curl -X POST "https://search.dria.co/hnsw/search" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"rerank": true, "top_n": 10, "contract_id": "I6tVkrpqv-c9hH3ygcH5nTy4_yHTJ3Dr-ikAJuB4k-M", "query": "What is alexanDRIA library?"}'
        
# Query

curl -X POST "https://search.dria.co/hnsw/query" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"vector": [0.123, 0.5236], "top_n": 10, "contract_id": "I6tVkrpqv-c9hH3ygcH5nTy4_yHTJ3Dr-ikAJuB4k-M", "level": 2}'