- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试编写一个程序,根据时间戳将 Timelapse 照片组合在一起。延时照片和随机照片在一个文件夹中。
例如,如果上一张和当前照片之间的时间戳差异(秒)为:346、850、13、14、13、14、15、12、12、13、16、11、438。
你可以合理猜测游戏中时光倒流从 13 点开始到 11 点结束。
现在我正在尝试一个 hacky 解决方案来比较与前一个的百分比差异。
但必须有一个公式/算法来按时差将时间戳组合在一起。滚动平均或其他东西。
我在寻找一个简单的解决方案吗?谢谢你!
def cat_algo(文件夹):
# Get a list with all the CR2 files in the folder we are processing
file_list = folder_to_file_list(folder)
# Extract the timestamp out of the CR2 file into a sorted dictionary
cr2_timestamp = collections.OrderedDict()
for file in file_list:
cr2_timestamp[file] = return_date_from_raw(file)
print str(file) + " - METADATA TIMESTAMP: " + \
str(return_date_from_raw(file))
# Loop over the dictionary to compare the timestamps and create a new dictionary with a suspected group number per shot
# Make sure we know that there is no first file yet using this (can be refractored)
item_count = 1
group_count = 0
cr2_category = collections.OrderedDict()
# get item and the next item out of the sorted dictionary
for item, nextitem in zip(cr2_timestamp.items(), cr2_timestamp.items()[1::]):
# if not the first CR2 file
if item_count >= 2:
current_date_stamp = item[1]
next_date_stamp = nextitem[1]
delta_previous = current_date_stamp - previous_date_stamp
delta_next = next_date_stamp - current_date_stamp
try:
difference_score = int(delta_next.total_seconds() /
delta_previous.total_seconds() * 100)
print "diffscore: " + str(difference_score)
except ZeroDivisionError:
print "zde"
if delta_previous > datetime.timedelta(minutes=5):
# if difference_score < 20:
print item[0] + " - hit - " + str(delta_previous)
group_count += 1
cr2_category[item[0]] = group_count
else:
cr2_category[item[0]] = group_count
# create a algo to come up with percentage difference and use this to label timelapses.
print int(delta_previous.total_seconds())
print int(delta_next.total_seconds())
# Calculations done, make the current date stamp the previous datestamp for the next iteration
previous_date_stamp = current_date_stamp
# If time difference with previous over X make a dict with name:number, in the end everything which has the
# same number 5+ times in a row can be assumed as a timelapse.
else:
# If it is the first date stamp, assign it the current one to be used in the next loop
previous_date_stamp = item[1]
# To help make sure this is not the first image in the sequence.
item_count += 1
print cr2_category
最佳答案
如果您使用 itertools.groupby,如果延迟符合延时照片区域的标准,则使用返回 True 的函数,基于延迟列表,您可以获得每个此类区域的索引。基本上,我们根据该函数的 True/False 输出进行分组。
from itertools import groupby
# time differences given in original post
data = [346, 850, 13, 14, 13, 14, 15, 12, 12, 13, 16, 11, 438]
MAX_DELAY = 25 # timelapse regions will have a delay no larger than this
MIN_LENGTH = 3 # timelapse regions will have at least this many photos
index = 0
for timelapse, g in groupby(data, lambda x: x <= MAX_DELAY):
length = len(list(g))
if (timelapse and length > MIN_LENGTH):
print ('timelapse index {}, length {}'.format(index, length))
index += length
输出:
timelapse index 2, length 10
关于python - 按时差算法对 Timelapses 进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54559663/
您好,我正在处理 BIRT 报告。我有一个查询,我必须对父级的重复数据进行分组,但子级也不能分组! 在我的查询中: item 是父项,item_ledger_entry 是子项。我有来自 item.N
我正在使用 GA API。 这是针对 MCF 目标报告(底部)的标准目标完成指标表(顶部) 看一下这个: 总数加起来 (12,238),但看看按 channel 分组的分割有多么不同!我以为这些会很接
我正在开发一个流量计数器,我想获得 IP 和重复计数,但是如何? 就像是 :select ip, count(ip) from Redirect 返回 : null total ip count 重定
我尝试编写一个正则表达式来匹配条件表达式,例如: a!=2 1+2=2+a 我尝试提取运算符。我当前的正则表达式是“.+([!=<>]+).+” 但问题是匹配器总是尝试匹配组中可能的最短字符串
在 MS Transact SQL 中,假设我有一个这样的表(订单): Order Date Order Total Customer # 09/30/2008 8
我想按 m.ID 分组,并对每个 m.id 求和 (pm.amount_construction* prod.anzahl) 实际上我有以下结果: Meterial_id | amount_const
我想根据多列中的值对值进行分组。这是一个例子: 我想得到输出: {{-30,-50,20},{-20,30,60},{-30,NULL or other value, 20}} 我设法到达: SELE
我正在尝试找出运行此查询的最佳方式。我基本上需要返回在我们的系统中只下了一个订单的客户的“登录”字段列表(登录字段基本上是客户 ID/ key )。 我们系统的一些背景...... 客户在同一日期下的
给定以下mysql结果集: id code name importance '1234', 'ID-CS-B', 'Chocolate Sauce'
大家好,我的数据框中有以下列: LC_REF 1 DT 16 2C 2 DT 16 2C 3 DT 16 2C 1 DT 16 3C 6 DT 16 3C 3
我有这样的 mongoDB 集合 { "_id" : "EkKTRrpH4FY9AuRLj", "stage" : 10, }, { "_id" : "EkKTRrpH4FY9
假设我有一组数据对,其中 index 0 是值,index 1 是类型: input = [ ('11013331', 'KAT'), ('9085267',
java中用stream进行去重,排序,分组 一、distinct 1. 八大基本数据类型 List collect = ListUtil.of(1, 2, 3, 1, 2).stream().fil
基本上,我从 TABLE_A 中的这个开始 France - 100 France - 200 France - 300 Mexico - 50 Mexico - 50 Mexico - 56 Pol
我希望这个正则表达式 ([A-Z]+)$ 将选择此示例中的最后一次出现: AB.012.00.022ABC-1 AB.013.00.022AB-1 AB.014.00.022ABAB-1 但我没有匹配
我创建了一个数据透视表,但数据没有组合在一起。 任何人都可以帮助我获得所需的格式吗? 我为获取数据透视表而编写的查询: DECLARE @cols AS NVARCHAR(MAX), -- f
我想按时间段(月,周,日,小时,...)选择计数和分组。例如,我想选择行数并将它们按 24 小时分组。 我的表创建如下。日期是时间戳。 CREATE TABLE MSG ( MSG_ID dec
在 SQL Server 2005 中,我有一个包含如下数据的表: WTN------------Date 555-111-1212 2009-01-01 555-111-1212 2009-
题 假设我有 k 个标量列,如果它们沿着每列彼此在一定距离内,我想对它们进行分组。 假设简单 k 是 2 并且它们是我唯一的列。 pd.DataFrame(list(zip(sorted(choice
问题 在以下数据框中 df : import random import pandas as pd random.seed(999) sz = 50 qty = {'one': 1, 'two': 2
我是一名优秀的程序员,十分优秀!