Как разделить выходные данные - PullRequest
0 голосов
/ 11 августа 2011

Вот мой код:

#-------------------------------------------------------------------------------
# Name:        Mocha Rotoscoping Via Blender
# Purpose:     Make rotoscoping more efficient
#
# Author:      Jeff Owens
#
# Created:     11/07/2011
# Copyright:   (c) jeff.owens 2011
# Licence:     Grasshorse
#-------------------------------------------------------------------------------
#!/usr/bin/env python
import sys
import os
import parser
sys.path.append('Z:\_protomotion\Prog\HelperScripts')
import GetDir
sys.path.append('Z:/Blender_Roto')
filename = 'diving_board.shape4ae'
infile = 'Z:/Blender_Roto/'
#import bpy
#from mathutils import Vector

#below are taken from mocha export
x_width =2048
y_height = 778
z_depth = 0
frame = 20

import re

data_directory = 'Z:/Blender_Roto/' # windows
data_file = 'diving_board.shape4ae'
fullpath = data_directory + data_file


print("====init=====")

file = open(fullpath)
for line in file:
current_line = line

# massive room for optimized code here.

# this assumes the last element of the line containing the words
# "Units Per Second" is the number we are looking for.
# this is a non float number, generally.
if current_line.find("Units Per Second") != -1:
    fps = line_split = float(current_line.split()[-1])
    print("Frames Per Second:", fps)

# source dimensions
if current_line.find("Source Width") != -1:
    source_width = line_split = int(current_line.split()[-1])
    print("Source Width:", source_width)

if current_line.find("Source Height") != -1:
    source_height = line_split = int(current_line.split()[-1])
    print("Source Height:", source_height)

# aspect ratios
if current_line.find("Source Pixel Aspect Ratio") != -1:
    source_px_aspect = line_split = int(current_line.split()[-1])
    print("Source Pixel Aspect Ratio:", source_px_aspect)

if current_line.find("Comp Pixel Aspect Ratio") != -1:
    comp_aspect = line_split = int(current_line.split()[-1])
    print("Comp Pixel Aspect Ratio:", comp_aspect)


# assumption, ae file can contain multiple mocha shapes.
# without knowing the exact format i will limit the script
# to deal with one mocha shape being animated N frames.

# this gathers the shape details, and frame number but does not
# include error checking yet.
if current_line.find("XSpline") != -1:

    # record the frame number.

    frame = re.search("\s*(\d*)\s*XSpline", current_line)
    if frame.group(1) != None:
        frame = frame.group(1)
        print("frame:", frame)


    # pick part the part of the line that deals with geometry
    match = re.search("XSpline\((.+)\)\n", current_line)

    line_to_strip = match.group(1)
    points = re.findall('(\(.*?\))', line_to_strip)
    print(len(points))
    for point in points:
        print(point)

 file.close()

вот вывод:

====init=====
Frames Per Second: 24.0
Source Width: 2048
Source Height: 778
Source Pixel Aspect Ratio: 1
Comp Pixel Aspect Ratio: 1
frame: 20
5
(0.793803,0.136326,0,0.5,0)
(0.772345,0.642332,0,0.5,0)
(0.6436,0.597615,0,0.5,0)
(0.70082,0.143387,0,0.5,0.25)
(0.70082,0.112791,0,0.5,0)

Я хочу выяснить, как назвать отдельные очки. Например, как бы я мог просто выложить код 0,793803 или просто выплюнуть 0,136326 и т. Д.

ДОПОЛНЕНИЕ

Так что я закончил тем, что добавил это

(point1, point2, point3, point4, point5) = points
print (point1)
#print (point2)
#print (point3)
#print (point4)
#print (point5)

, который дал:

(0.793803,0.136326,0,0.5,0)

Но когда я попытался снова разобрать, и я написал

(x,y,z,w,s) = p

возникла ошибка p не определена

тогда я попробовал (x, y, z, w, s) = точка1

, что привело к ошибке слишком много значений для распаковки.

Еще одна вещь, которую я попробовал, была

for point1 in points
    p1x = (x,)
print (p1x)

, который только что дал первое (а не целое значение X ...

Какие-нибудь решения?

ADDENDUM PT 2

Итак, что происходит, это:

====init=====
Frames Per Second: 24.0
Source Width: 2048
Source Height: 778
Source Pixel Aspect Ratio: 1
Comp Pixel Aspect Ratio: 1
5
frame: 20
(0.793803,0.136326,0,0.5,0)
x: (, y: y0
x: (, y: y0
x: (, y: y0
x: (, y: y0
x: (, y: y0

когда я ввожу это

(point1, point2, point3, point4, point5) = points
print (point1)
#print (point2)
#print (point3)
#print (point4)
#print (point5)

for point in points:
    x, y, *data = point
    print(str.format("x: {0}, y: y{1}", x, y))

file.close()

Я не знаю, почему это тянет (, от (0.793803,0.136326,0,0.5,0)

Могу сказать, что программа думает, что если я поставлю x, y, z, w, s

Я хочу x: '(' y: '0' z: '.' W: '7' s: '9' что я не Я хочу: х: 0,793803 у: 0,136326 z: 0 ш: 0,5 с: 0

Извините за все вопросы, я действительно ценю вашу помощь

1 Ответ

3 голосов
/ 11 августа 2011

Точки - это кортежи, так что все довольно просто.

Вы можете сначала распаковать их (где p - точка):

>>> x, y, *data = p
>>> x
0.793803
>>> y
0.136326
>>> data
[0, 0.5, 0]

Или вы можете индексировать их:

>>> p[0]
0.793803

Или вы можете сойти с ума с форматированием строки:

>>> str.format("x{0[0]} y{0[1]}", p)
'x0.793803 y0.136326'

Хорошо, возможно, не последний. Я бы сначала распаковал их для удобства чтения.


Мой пример в контексте:

for point in points:
    x, y, *data = point
    print(str.format("x: {0}, y: y{1}", x, y))

points - это «повторяемый» набор кортежей, каждый из которых представляет точку на сплайне, записанную в переменную point.

...