171 lines
5.4 KiB
TeX
171 lines
5.4 KiB
TeX
%xcolor={table} is the equivalent of \usepackage[table]{xcolor} but beamer already loaded it.
|
||
\documentclass[handout,xcolor={table}]{beamer}
|
||
\usepackage[T1]{fontenc}
|
||
\usepackage[utf8]{inputenc}
|
||
\usepackage{lmodern}
|
||
\usepackage[francais]{babel}
|
||
|
||
\usetheme{Warsaw}
|
||
\useoutertheme{infolines}
|
||
|
||
% We need to add TikZ definitions again. You could put them in a separated file
|
||
% and use `\input{...}` command to avoid the duplication.
|
||
\usepackage{tikz}
|
||
\usetikzlibrary{calc,positioning}
|
||
|
||
\usepackage{tabularx} % sizeable table
|
||
|
||
|
||
% custom theme
|
||
%\makeatother
|
||
\setbeamertemplate{footline}
|
||
{
|
||
\leavevmode%
|
||
\hbox{%
|
||
\begin{beamercolorbox}[wd=.3\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
|
||
\usebeamerfont{author in head/foot}\insertshortauthor
|
||
\end{beamercolorbox}%
|
||
\begin{beamercolorbox}[wd=.6\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
|
||
\usebeamerfont{title in head/foot}\insertshorttitle\hspace*{3em}
|
||
\end{beamercolorbox}%
|
||
\begin{beamercolorbox}[wd=.1\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
|
||
\usebeamerfont{author in head/foot}\insertframenumber{} / \inserttotalframenumber\hspace*{1ex}
|
||
\end{beamercolorbox}}%
|
||
\vskip0pt%
|
||
}
|
||
%\makeatletter
|
||
%\setbeamertemplate{navigation symbols}{}
|
||
|
||
|
||
% `mode=tex` means we will use the source file of the figures directly.
|
||
\usepackage[mode=tex]{standalone}
|
||
|
||
\title[Photographie numérique]{Séquence 2 — Photographie numérique}
|
||
\subtitle[Pixels et droits]{Séance 1 — Pixels et droits}
|
||
\date{2020-2021}
|
||
\author[Adrian Amaglio — CC-BY]{Adrian Amaglio}
|
||
\institute{Lycée Jules Guesde\\SNT}
|
||
|
||
\begin{document}
|
||
|
||
\begin{frame}
|
||
\maketitle
|
||
% TODO licence & logo
|
||
\end{frame}
|
||
|
||
% \includestandalone[width=0.8\linewidth]{./figure} % without the `.tex` extension
|
||
%
|
||
\section{Historique}
|
||
\begin{frame}{\insertsection}
|
||
\begin{description}
|
||
\item[1827] Naissance de la photographie.
|
||
\item[1861] Photographie en couleur.
|
||
\item[1957] Première photographie numérisée.
|
||
\item[1975] Premiers appareils photos numériques.
|
||
\item[2000] Premiers appareils photos sur les téléphones.
|
||
\end{description}
|
||
\end{frame}
|
||
|
||
\section{Les pixels}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}
|
||
Exemple d’une image dont les pixels sont très visibles.
|
||
\centering
|
||
\includegraphics[width=.8\linewidth]{./image_pixelisee.jpg}
|
||
\end{frame}
|
||
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{\insertsubsection}
|
||
Une image est composée intégralement de carrés de couleurs appellés pixels.
|
||
\begin{block}{Pixel (contraction en anglais de Picture Element)}
|
||
Un Pixel est un carré de couleur qui compose une image.
|
||
\end{block}
|
||
\end{frame}
|
||
|
||
\subsection{Les couleurs}
|
||
|
||
\begin{frame}{\insertsection}{\insertsubsection}
|
||
On décrit une couleur comme étant une quantité de rouge, vert et bleu.
|
||
\\
|
||
On peut faire toutes les couleurs possibles à l’aide de ces trois couleurs.
|
||
\\
|
||
\centering
|
||
\begin{tikzpicture}
|
||
\definecolor{mypurple}{RGB}{200,0,255}
|
||
\draw[fill=blue] (-4,0) rectangle (-3,1);
|
||
\node[draw] at (-3.5,-1) {R=0,V=0,B=255};
|
||
\draw[fill=mypurple] (0,0) rectangle (1,1);
|
||
\node[draw] at (.5,-1) {R=200,V=0,B=255};
|
||
\draw[fill=white] (4,0) rectangle (5,1);
|
||
\node[draw] at (4.5,-1) {R=255,V=255,B=255};
|
||
\end{tikzpicture}
|
||
Pour des raisons techniques, les valeurs de rouge, vert et bleu sont comprises entre 0 et 255.
|
||
\end{frame}
|
||
|
||
%
|
||
\subsection{Définition d’une image}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{\insertsubsection}
|
||
\begin{block}{Définition}
|
||
La définition d’une image est \textbf{le nombre de pixels} qu’elle contient.
|
||
\end{block}
|
||
Par exemple, une image de \textbf{10 pixels} de large et de \textbf{10 pixels} de long, aura \textbf{une définition de 100 pixels}.
|
||
\end{frame}
|
||
|
||
%
|
||
\section{La résolution}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{}
|
||
\begin{block}{Résolution}
|
||
Nombre de pixel sur une surface (écran ou papier). Exprimée en point par pouce (ou par cm).
|
||
\end{block}
|
||
La taille d’une image lorsqu’elle est affichée sur un écran ou imprimée dépend de la résolution.
|
||
\begin{columns}
|
||
\begin{column}{.5\textwidth}
|
||
\centering
|
||
\includegraphics[width=.8\linewidth]{./image_pixelisee.jpg}
|
||
\end{column}
|
||
\begin{column}{.5\textwidth}
|
||
\centering
|
||
\includegraphics[width=.2\linewidth]{./image_pixelisee.jpg}
|
||
\end{column}
|
||
\end{columns}
|
||
Une image numérique n’a de résolution que lorsqu’elle est affichée ou imprimée !
|
||
\end{frame}
|
||
|
||
%
|
||
\section{Capteurs d’appareil photo numérique}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{Comment transformer la lumière en pixels ?}
|
||
\centering
|
||
\includegraphics[height=.9\textheight]{./capteur.png}
|
||
\end{frame}
|
||
|
||
\begin{frame}{\insertsection}{Comment transformer la lumière en pixels ?}
|
||
\begin{block}{Les photosites}
|
||
Ce sont des cellules qui mesurent l’intensité de la lumière reçue par l’appareil photo numérique.
|
||
\end{block}
|
||
Ils tapissent le capteur de l’appareil, les pixels sont créés d’après leurs mesures.
|
||
\end{frame}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{Comment transformer la lumière en pixels ?}
|
||
\centering
|
||
\includegraphics[width=\textwidth]{./photosite2.png}
|
||
\end{frame}
|
||
|
||
%
|
||
\section{Partager son travail}
|
||
|
||
%
|
||
\begin{frame}{\insertsection}{Creative Common}
|
||
\centering
|
||
\includegraphics[width=.8\textwidth]{./cc.png}
|
||
\end{frame}
|
||
\end{document}
|