Library

Video Player is loading.
 
Current Time 6:50
Duration 6:52
Loaded: 0.00%
 
And if the image is scaled bigger or smaller
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:00

    Welcome back to the OpenVINO channel In all the videos so far, we have talked about

  • 00:05

    image and video processing.

  • 00:08

    But OpenVINO can help you accelerate audio, NLP and many other usages.

  • 00:13

    This video is an ultra fast introduction to audio processing.

  • 00:19

    There are many better and more comprehensive full tutorials, this is really just to get

  • 00:25

    you started..

  • 00:26

    Before talking about Audio, a quick reminder on image processing

  • 00:30

    Here are 2 pixels of an image,

  • 00:34

    These pixels cannot help us much with understanding the full image.

  • 00:39

    Even if we have all the pixels, it is not enough

  • 00:42

    Because if we move this image by one pixel to any side, the way the computer represent

  • 00:48

    this image is totally difference.

  • 00:50

    And if the image is scaled, bigger or smaller

  • 00:53

    rotated, or gone thru any such simple transformation, It’s a totally different image as represented

  • 01:01

    in memory

  • 01:02

    What we need is invariance to all these transformations.

  • 01:07

    So the first layers of the neural networks we usually use are doing exactly this

  • 01:12

    We are taking the original image

  • 01:15

    And the first layer or layers usually implement convolutions and other operations

  • 01:21

    to extract features from the image The first layer of features will sometimes look like edges,

  • 01:29

    The second layer will extract higher level features, maybe shapes like circles, corners

  • 01:35

    and so on.

  • 01:36

    So every layer of the first layers is extracting more and more features of the image,

  • 01:42

    Hopefully these features are invariant to all kind of scaling, rotating and so on.

  • 01:49

    And we apply filters with multiple sizes and basically extract features at few scales

  • 01:56

    or rotations

  • 01:57

    And now the fully connected layers can determine if this is a flower based on the combination

  • 02:04

    of all the features that were extracted

  • 02:07

    And this is AI for vision in a nutshell

  • 02:11

    The same apply for audio signals, Just one tone of the audio is not going to

  • 02:17

    help us a lot, and not even the full signal in the time domain..

  • 02:22

    We need, just like for the image processing, to extract audio invariant features.

  • 02:29

    And only then try to actually detect or classify the audio

  • 02:34

    So let’s talk about extracting audio features This is a 1 KHz simple sine wave.

  • 02:41

    And this is how it sounds..

  • 02:42

    Audio is a signal in the time domain.

  • 02:45

    The signal is sampled and quantized..

  • 02:48

    We are working with digital signals..

  • 02:50

    This is a 2KHz simple sine wave and this is how it sounds

  • 02:56

    Our ears are sensitive to audio signals in the time and frequency domains..

  • 03:02

    Processing audio in time domain alone is difficult.

  • 03:05

    So the frequency domain representation of a signal reveals several characteristics of

  • 03:10

    the signal that are either not easy to see, or not visible

  • 03:14

    at all at the time domain.

  • 03:17

    The Fourier transform give us the frequency domain representation of the synthetic signals

  • 03:23

    I created

  • 03:25

    A spike at 1KHz and a spike at 2KHz..

  • 03:29

    I have created a third wave by just adding the first 2

  • 03:35

    And another wave, which you can immediately see that is different but is also the combination

  • 03:41

    of the first 2..

  • 03:43

    A different combination

  • 03:44

    And the problem is that in the Frequency domain, we are getting almost the same representation

  • 03:50

    of them both..

  • 03:51

    Even though we see, and can easily hear that they are totally different

  • 03:56

    So there are advantages in analyzing the signal at the time domain, and advantages to the

  • 04:01

    frequency domain..

  • 04:03

    What we need is a representation that combines both the time and frequency information..

  • 04:08

    And we can get it using Short Time Fourier Transform (STFT)

  • 04:14

    If we apply several FFTs at different time intervals..

  • 04:18

    the result will be a spectrogram You can think of it as many FFTs arranged

  • 04:24

    next to each other, Each FFT is done for a small window of time..

  • 04:29

    The spectrogram you see here, is the representation of a synthetic audio signal I created that

  • 04:35

    sounds like that The colors indicate the Amplitude or strength

  • 04:40

    of each frequency.

  • 04:42

    The brighter the color the higher the energy And now we can clearly see how the frequency

  • 04:48

    of the signal changes over time..

  • 04:51

    So both time and frequency representation.

  • 04:55

    And this is the MFCC of that signal.

  • 04:58

    I will not get into too many details, but you can see that it is not very different

  • 05:04

    from the spectrogram representation, It’s a different scale on the vertical axis,

  • 05:09

    this is not a linear frequency scale but rather a MEL scale

  • 05:13

    -a scale of pitches that sounds to the human ear to be equal in distance from one another.

  • 05:20

    The intensity scale is also non linear… and also adjusted to the way our ears perceive

  • 05:26

    audio intensity Lots of materials on the internet if you’d

  • 05:30

    like to understand more,

  • 05:32

    The point is, that now we have a representation that basically looks like an image.

  • 05:36

    And this is something we can work with and feed into a neural network.

  • 05:42

    So now we can extract the Spectrogram out of the audio signal

  • 05:46

    And feed it into a CNN to generate a feature map, that could be used, for example by a

  • 05:53

    classifier to classify audio signal

  • 05:57

    Video 77, suond classification using the DL-streamer or by a python sample is doing exactly that.

  • 06:05

    Just youTube openvino 77,

  • 06:08

    OpenVINO also have speech recognition demo, look for that video too.

  • 06:13

    If you look at the demos and sample code you can find libraries and functions that you

  • 06:18

    can use to extract audio features, to efficiently extract MFCC and feed them

  • 06:25

    into neural networks.

  • 06:27

    This is it in a nutshell, there is a full world of knowledge out there

  • 06:32

    I don’t usually do that, but I do recommend “the sound of AI” channel of Valerio Velardo,

  • 06:40

    he is great

  • 06:43

    Audio processing with OpenVINO, Go make same noises

All

The example sentences of ROTATED in videos (15 in total of 104)

also adverb watch verb, base form how wh-adverb he personal pronoun speeds verb, 3rd person singular present up preposition or subordinating conjunction the determiner counter noun, singular or mass by preposition or subordinating conjunction pushing verb, gerund or present participle off preposition or subordinating conjunction his possessive pronoun rotated verb, past tense back adverb foot noun, singular or mass .
rotated verb, past tense , or coordinating conjunction gone verb, past participle thru proper noun, singular any determiner such adjective simple adjective transformation noun, singular or mass , it personal pronoun s proper noun, singular a determiner totally adverb different adjective image noun, singular or mass as preposition or subordinating conjunction represented verb, past participle
were verb, past tense part noun, singular or mass of preposition or subordinating conjunction netsch proper noun, singular s proper noun, singular field proper noun, singular theory proper noun, singular proper noun, singular a determiner design noun, singular or mass strategy noun, singular or mass that preposition or subordinating conjunction used verb, past participle overlays noun, plural of preposition or subordinating conjunction rotated verb, past participle
like preposition or subordinating conjunction i personal pronoun took verb, past tense a determiner hinge noun, singular or mass on preposition or subordinating conjunction a determiner door noun, singular or mass and coordinating conjunction i personal pronoun rotated verb, past tense it personal pronoun down adverb to to here adverb .
we personal pronoun can modal use verb, base form the determiner transformation noun, singular or mass equations noun, plural shown verb, past participle here adverb to to calculate verb, base form moments noun, plural of preposition or subordinating conjunction inertia noun, singular or mass for preposition or subordinating conjunction rotated verb, past participle
and coordinating conjunction it personal pronoun s proper noun, singular always adverb rotated verb, past tense in preposition or subordinating conjunction the determiner direction noun, singular or mass of preposition or subordinating conjunction decreasing verb, gerund or present participle flow noun, singular or mass - which wh-determiner in preposition or subordinating conjunction a determiner gravitational adjective
rotated verb, past tense like preposition or subordinating conjunction this determiner austerity noun, singular or mass rotated verb, past tense or coordinating conjunction irrelevant noun, singular or mass whether preposition or subordinating conjunction it personal pronoun 's verb, 3rd person singular present neutral adjective will modal determine verb, base form to to a determiner certain adjective
and coordinating conjunction we personal pronoun have verb, non-3rd person singular present the determiner same adjective holonomy proper noun, singular effect noun, singular or mass , but coordinating conjunction this determiner time noun, singular or mass rotated verb, past tense in preposition or subordinating conjunction the determiner opposite adjective direction noun, singular or mass .
and coordinating conjunction to to measure verb, base form how wh-adverb much adjective something noun, singular or mass is verb, 3rd person singular present rotated verb, past participle , we personal pronoun use verb, non-3rd person singular present a determiner special adjective unit noun, singular or mass called verb, past participle degrees noun, plural .
rotated verb, past tense yeah interjection so preposition or subordinating conjunction it personal pronoun 's verb, 3rd person singular present actually adverb coming verb, gerund or present participle the determiner bright adjective the determiner middle noun, singular or mass part noun, singular or mass of preposition or subordinating conjunction the determiner sky noun, singular or mass is verb, 3rd person singular present
area noun, singular or mass that preposition or subordinating conjunction rotated verb, past participle slowly adverb allowing verb, gerund or present participle new adjective hungry adjective bunnies noun, plural to to take verb, base form the determiner place noun, singular or mass of preposition or subordinating conjunction bunnies noun, plural who wh-pronoun 'd modal
kind noun, singular or mass of preposition or subordinating conjunction use noun, singular or mass lines noun, plural to to dictate verb, base form distance noun, singular or mass and coordinating conjunction because preposition or subordinating conjunction this determiner is verb, 3rd person singular present a determiner slightly adverb rotated verb, past participle line noun, singular or mass
the determiner diagram noun, singular or mass can modal be verb, base form rotated verb, past participle any determiner number noun, singular or mass of preposition or subordinating conjunction degrees noun, plural and coordinating conjunction still adverb make verb, base form complete adjective physical adjective sense noun, singular or mass .
that wh-determiner 's verb, 3rd person singular present just adverb a determiner single adjective pitch noun, singular or mass , but coordinating conjunction then adverb the determiner roof noun, singular or mass rotated verb, past tense and coordinating conjunction the determiner whole adjective actual adjective building noun, singular or mass kind noun, singular or mass of preposition or subordinating conjunction rotated verb, past participle
you personal pronoun 'd modal be verb, base form in preposition or subordinating conjunction 20 cardinal number rotated verb, past tense it personal pronoun is verb, 3rd person singular present better adjective, comparative to to be verb, base form externally adverb rotated verb, past participle but coordinating conjunction yeah interjection you personal pronoun can modal

Use "rotated" in a sentence | "rotated" example sentences

How to use "rotated" in a sentence?

  • Open-heart surgery is now part of a typical life experience for many people. Folks talk casually about 'having a stent put in,' as if they had their tires rotated.
    -Roger Ebert-

Definition and meaning of ROTATED

What does "rotated mean?"

/ˈrōˌtāt/

verb
To regularly change the position of.

What are synonyms of "rotated"?
Some common synonyms of "rotated" are:
  • revolve,
  • turn,
  • spin,
  • gyrate,
  • wheel,
  • whirl,
  • twirl,
  • swivel,
  • circle,
  • pirouette,
  • pivot,
  • reel,

You can find detailed definitions of them on this page.