View full-text article in PMC Sensors (Basel). 2021 Jun 8;21(12):3953. doi: 10.3390/s21123953 Search in PMC Search in PubMed View in NLM Catalog Add to search Copyright and License information © 2021 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). PMC Copyright notice Algorithm 2: Detection algorithm based on video texture changes fraction Input: video frames I(p)(1≤p≤N), set THR_R1 as threshold selected for peak point Output: store position of suspicious tampering point in S 1: S=∅,C=0 //Reset S,C in Algorithm 1 2: for i=1;i<N;i++ do 3: calculate video texture changes fraction TC(Ii,Ii+1) 4: if TC(Ii,Ii+1)THR_R1 then 5: add i into S 6: C += 1 7: end if 8: end for 9: if C≥1 then 10: (a) return FORGED VIDEO 11: (b) store S,C 12:else return ORIGINAL VIDEO 13:end if