I have been trying with no success to find out what is causing this problem, im using
\documentclass{report}
\usepackage{appendix}
\renewcommand{\appendixname}{APÉNDICE}
\renewcommand{\appendixtocname}{APÉNDICE} \renewcommand{\appendixpagename}{APÉNDICE}
\addappheadtotoc
\appendixpage
\appendix
\input{Tesis/Estructura/07_Apendice}
I already finished writing the entire document and now Im just placing some appendix content (a bunch of pictures) however it keeps placing a blank page between every floating figure I place and it does this at random, sometimes it adds it and sometimes it doesnt, this makes it difficult to understand why its happening, but when it happens the blank page does not go away, even after clearing the cache. This does not happen in the entire document only in the appendice.
\section{ Section 1 }
\begin{figure}[H]
\begin{center}
\includegraphics[width = 1\textwidth]{Tesis/Image/1.jpg}
\captionof{figure}{ Picture 1 }
\label{p1}
\end{center}
\end{figure}
\section{ section 2 }
\begin{figure}[H]
\begin{center}
\includegraphics[width = 1\textwidth]{Images/2.JPG}
\captionof{figure}{ Picture 2}
\label{p2}
\end{center}
\end{figure}
\section{ section 3 }
\begin{figure}[H]
\begin{center}
\includegraphics[width = .9\textwidth]{Images/2.jpg}
\captionof{figure}{ figure 2.}
\label{Sensor}
\end{center}
\end{figure}
This can generate something like this (sorry for the size it's the only way i found to try to show how the document compiles), as i said this only happens when i chain several pictures and sections, it's only happening in the appendix
I already tried using \newpage, \clearpage, \let\cleardoublepage\clearpageand changing document class to, \documentclass[11pt,oneside]{report} changing the size of the pictures with no changes
There are no \newpage commands in the appendix or around any commands related to it

\begin{center}instruction with\centering, delete all\end{center}instructions, and replace allwidth = 1\textwidthoptions withheight = 0.85\textheightoptions? Separately, since you're usingfigureenvironments, you needn't use\captionof{figure}{...}statements;\caption{...}should do just as well. – Mico Jan 05 '16 at 05:46\centeringinstructions should be placed inside thefigureenvironments. – Mico Jan 05 '16 at 07:02