foreground - определение. Что такое foreground
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое foreground - определение

SCHEDULING ALGORITHM THAT IS USED TO CONTROL EXECUTION OF MULTIPLE PROCESSES ON A SINGLE PROCESSOR
Foreground Background
Найдено результатов: 24
foreground         
WIKIMEDIA DISAMBIGUATION PAGE
Foreground; Background and foreground; Foreground and background (disambiguation)
(foregrounds)
1.
The foreground of a picture or scene you are looking at is the part or area of it that appears nearest to you.
He is the bowler-hatted figure in the foreground of Orpen's famous painting.
? background
N-VAR: oft in the N
2.
If something or someone is in the foreground, or comes to the foreground, they receive a lot of attention.
This is another worry that has come to the foreground in recent years.
N-SING: usu the N, oft in/to N
foreground         
WIKIMEDIA DISAMBIGUATION PAGE
Foreground; Background and foreground; Foreground and background (disambiguation)
Foreground         
WIKIMEDIA DISAMBIGUATION PAGE
Foreground; Background and foreground; Foreground and background (disambiguation)
·noun On a painting, and sometimes in a bas-relief, mosaic picture, or the like, that part of the scene represented, which is nearest to the spectator, and therefore occupies the lowest part of the work of art itself. ·cf. Distance, ·noun, 6.
foreground         
WIKIMEDIA DISAMBIGUATION PAGE
Foreground; Background and foreground; Foreground and background (disambiguation)
(Unix) On a time-sharing system, a task executing in foreground is one able to accept input from and return output to the user in contrast to one running in the background. Nowadays this term is primarily associated with Unix, but it appears first to have been used in this sense on OS/360. Normally, there is only one foreground task per terminal (or terminal window). Having multiple processes simultaneously reading the keyboard is confusing. [Jargon File] (1994-10-24)
foreground         
WIKIMEDIA DISAMBIGUATION PAGE
Foreground; Background and foreground; Foreground and background (disambiguation)
¦ noun
1. the part of a view or image nearest to the observer.
2. the most prominent or important position.
¦ verb place in the foreground.
Origin
C17: from fore- + ground1, on the pattern of Du. voorgrond.
Foreground-background         
Foreground-background is a scheduling algorithm that is used to control an execution of multiple processes on a single processor. It is based on two waiting lists, the first one is called foreground because this is the one in which all processes initially enter, and the second one is called background because all processes, after using all of their execution time in foreground, are moved to background.
Foreground detection         
  • Temporal average filter example
CONCEPT IN COMPUTER VISION TO DETECT CHANGES IN IMAGE SEQUENCES
Background subtraction; User:Zafar142003/Background subtraction; Wikipedia talk:Articles for creation/Background subtraction; Background detection; Foreground recognition; Background recognition; Foreground segmentation
Foreground detection is one of the major tasks in the field of computer vision and image processing whose aim is to detect changes in image sequences. Background subtraction is any technique which allows an image's foreground to be extracted for further processing (object recognition etc.
Generalized foreground-background         
INI ADALA
Generalized Foreground-Background (FB), also known as Least Attained Service (LAS) is a scheduling policy. It consists in scheduling the process that has received the least service so far.
Foregrounding         
Foregrounding is a concept in literary studies concerning making a linguistic utterance (word, clause, phrase, phoneme, etc.) stand out from the surrounding linguistic context, from given literary traditions or from more general world knowledge.
Photo stand-in         
  • Coolidge's patent
  • The back of a photo stand-in
BOARD WITH HOLE(S) TO STICK ONE'S FACE(S) THROUGH IN ORDER TO TAKE HUMOROUS PHOTOGRAPHS
Face in the hole board; Photo cutout board; Comic foreground; Carnival cutout; Sproftacchel
A photo stand-in (also called a face in the hole board, photo cutout board, comic foreground or picture you put your head in) is a large board with an image printed on it and that has one or more holes cut out where people can stick their face through the board for humorous effect. The hole aligns with an area in the image that creates an optical illusion of the person's face being an actual part of the scene.

Википедия

Foreground-background

Foreground-background is a scheduling algorithm that is used to control an execution of multiple processes on a single processor. It is based on two waiting lists, the first one is called foreground because this is the one in which all processes initially enter, and the second one is called background because all processes, after using all of their execution time in foreground, are moved to background.

When a process becomes ready it begins its execution in foreground immediately, forcing the processor to give up execution of the current process in the background and execute the newly created process for a predefined period. This period is usually 2 or more quanta. If the process is not finished after its execution in the foreground it is moved to background waiting list where it will be executed only when the foreground list is empty. After being moved to the background, the process is then run longer than before, usually 4 quanta. The time of execution is increased because the process needs more than 2 quanta to finish (this is the reason it was moved to background). This gives the process the opportunity to finish within this newly designated time. If the process does not finish after this, it is then preempted and moved to the end of the background list.

The advantage of the foreground-background algorithm is that it gives the process the opportunity to execute immediately after its creation, but scheduling in the background list is pure round-robin scheduling.