把Kinect扫描的点云数据导入Maya | Import Kinect point cloud to Maya

I used Skanect to scan my room down. The .ply file generated is like this:

0.614557 -0.0194625 -0.305274 -0.127814 -0.551592 0.824263 100 113 96
0.614418 -0.019946 -0.305417 -0.127814 -0.551592 0.824263 98 111 96
0.61429 0.00103368 -0.303381 0.0386538 -0.603242 0.796621 104 107 95

扫描用的工具叫Skanect,参见上一篇
导出的.ply文件大概是这样

0.614557 -0.0194625 -0.305274 -0.127814 -0.551592 0.824263 100 113 96
0.614418 -0.019946 -0.305417 -0.127814 -0.551592 0.824263 98 111 96
0.61429 0.00103368 -0.303381 0.0386538 -0.603242 0.796621 104 107 95

9 columns are x, y, z, xn(normal), yn, zn, r, g, b.
Took me a while to make it work because I didn’t know shit about Python itself or Maya Python. So if you’re in fog too I present you Python functions for Maya.

19_16_06
^result.

Notes:

Attributes have types, I forgot because Python fed me honey on this one. Stuck for a day.
emit() is buggy, it crashed the soul out of me when I used at=’rgbPP’ , use setParticleAttr() instead

Important, after importing, do ‘set current state to initial state’ and cache the first frame, otherwise the color will be gone next time you start it, this is some bullshit.

To hide part of the point cloud, select and cmds.setParticleAttr(at=’opacityPP’, fv=0).

[py]
## Maya Point Cloud (.xyz) Importer
## Format: X Y Z ,a ,a a, R, G, B for every line
## Page: http://axlarts.com/?p=1923

from maya import cmds

RES=100 # Only draw one particle for every RES lines in the file,
# in case of huge cloud but only need reference in the scene.

path=cmds.fileDialog2(ds=2,fm=1)[0]
f0=open(path)
n=0; pn=0
p0=cmds.nParticle()[1]
cmds.setAttr(p0+’.isDynamic’,0)
cmds.addAttr(p0,ln=’rgbPP’,dt=’vectorArray’)

while 1:
line=f0.readline().split(‘ ‘)
n+=1
if line[0]==”:
break

if n%10000==0:
print "%d lines %d particles\n" % (n, pn)
if n%RES!=0:
continue

rotted=False
xyz=[]
for doll in line:
try:
dollF=float(doll)
except ValueError:
rotted=True
print ‘(Warning) Invalid value %s in line%d: %s’ % (doll,n,line)
break
xyz.append(dollF)
if len(line)!=9:
rotted=True
if rotted:
continue

for a in range(6,9): #Just because it’s x y z bla bla bla r g b in my case
xyz[a]/=255

cmds.emit(object=p0,position=xyz[:3])
cmds.select(p0+’.pt[‘+str(pn)+’]’)
cmds.setParticleAttr(at=’rgbPP’, vv=xyz[6:9])
pn+=1

[/py]

Additional Python script to import particles, using only the first 3 numbers everyline as x,y,z and ignoring others.
There surely is way to make this more compatible but that’s too much effort..
[py]
## Maya Point Cloud (.xyz) Importer
## Format: X Y Z for every line
## Page: http://axlarts.com/?p=1923

from maya import cmds

RES=1 # Only draw one particle for every RES lines in the file,
# in case of huge cloud but only need reference in the scene.

path=cmds.fileDialog2(ds=2,fm=1)[0]
f0=open(path)
n=0; pn=0
p0=cmds.nParticle()[1]
cmds.setAttr(p0+’.isDynamic’,0)
cmds.addAttr(p0,ln=’rgbPP’,dt=’vectorArray’)

while 1:
line=f0.readline().split(‘ ‘)
n+=1
if line[0]==”:
break

if n%10000==0:
print "%d lines %d particles\n" % (n, pn)
if n%RES!=0:
continue

rotted=False
xyz=[]
for doll in line:
try:
dollF=float(doll)
except ValueError:
rotted=True
print ‘(Warning) Invalid value %s in line%d: %s’ % (doll,n,line)
break
xyz.append(dollF)
if len(line)<3:
rotted=True
if rotted:
continue

cmds.emit(object=p0,position=xyz[:3])
pn+=1
[/py]
9行分别是 x, y, z, xn, yn, zn, r, g, b,xn是normal方向。
所以用个脚本从文件读数据-添加粒子就行了。
搜到这里的同学估计和我半斤八两,所以我present你Maya Python函数表
19_16_06
效果图(脚本见文末)

小记:
添加attribute注意类型,Python让我忘了这茬了,卡了我半天。
emit()函数有bug,直接 at=‘rgbPP’ 的话会崩溃,要用setParticleAttr()

5/1/2013 Update:
导入以后要先set current state to initial state 然后存下首帧cache,不然颜色会丢掉。
不要的部分可以选中然后 cmds.setParticleAttr(at=’opacityPP’, fv=0) 隐藏。

[py]
## Maya Point Cloud (.xyz) Importer
## Format: X Y Z ,a ,a a, R, G, B for every line
## Page: http://axlarts.com/?p=1923

from maya import cmds

RES=100 # Only draw one particle for every RES lines in the file,
# in case of huge cloud but only need reference in the scene.

path=cmds.fileDialog2(ds=2,fm=1)[0]
f0=open(path)
n=0; pn=0
p0=cmds.nParticle()[1]
cmds.setAttr(p0+’.isDynamic’,0)
cmds.addAttr(p0,ln=’rgbPP’,dt=’vectorArray’)

while 1:
line=f0.readline().split(‘ ‘)
n+=1
if line[0]==”:
break

if n%10000==0:
print "%d lines %d particles\n" % (n, pn)
if n%RES!=0:
continue

rotted=False
xyz=[]
for doll in line:
try:
dollF=float(doll)
except ValueError:
rotted=True
print ‘(Warning) Invalid value %s in line%d: %s’ % (doll,n,line)
break
xyz.append(dollF)
if len(line)!=9:
rotted=True
if rotted:
continue

for a in range(6,9): #Just because it’s x y z bla bla bla r g b in my case
xyz[a]/=255

cmds.emit(object=p0,position=xyz[:3])
cmds.select(p0+’.pt[‘+str(pn)+’]’)
cmds.setParticleAttr(at=’rgbPP’, vv=xyz[6:9])
pn+=1
[/py]

另外附加只看每行前3个数字作为xyz,忽略其他的python脚本
当然可以并成一个了但是没那闲情..
[py]
## Maya Point Cloud (.xyz) Importer
## Format: X Y Z for every line
## Page: http://axlarts.com/?p=1923

from maya import cmds

RES=1 # Only draw one particle for every RES lines in the file,
# in case of huge cloud but only need reference in the scene.

path=cmds.fileDialog2(ds=2,fm=1)[0]
f0=open(path)
n=0; pn=0
p0=cmds.nParticle()[1]
cmds.setAttr(p0+’.isDynamic’,0)
cmds.addAttr(p0,ln=’rgbPP’,dt=’vectorArray’)

while 1:
line=f0.readline().split(‘ ‘)
n+=1
if line[0]==”:
break

if n%10000==0:
print "%d lines %d particles\n" % (n, pn)
if n%RES!=0:
continue

rotted=False
xyz=[]
for doll in line:
try:
dollF=float(doll)
except ValueError:
rotted=True
print ‘(Warning) Invalid value %s in line%d: %s’ % (doll,n,line)
break
xyz.append(dollF)
if len(line)<3:
rotted=True
if rotted:
continue

cmds.emit(object=p0,position=xyz[:3])
pn+=1
[/py]

288 thoughts on “把Kinect扫描的点云数据导入Maya | Import Kinect point cloud to Maya

  1. MichaelNoils

    А generic drug is a preparation that is produced to match a innovator medicine in strength, purity, and performance.
    It contains the identical active substance as the branded product, but may differ in fillers and price.
    For approval, a copy must establish pharmaceutical equivalence to the original product, ensuring that it is equally safe and potent.
    tadapox dosage

    Reply
  2. MichaelNoils

    A generic pharmaceutical is a product that is produced to match a original product in potency, quality, and performance.
    This product contains the identical therapeutic component as the branded product, yet may differ in excipients and cost.
    To be approved, a generic must demonstrate therapeutic equivalence to the original medicine, ensuring that it is as safe and potent.
    is prednisolone safe

    Reply
  3. cumtube.cc

    Nudee camm wih herr femmeTeeen fashion anklee bootsToilet traioning sexx neww yorkBiig lesbian rageFreee pyssy shaved teen tightVintaage sleeve protectorsSeexy yoiung looing girls picturesAbdominal paiin vaaginal dischargeTeen sologirlks
    picsFreee hot nnew simpson pornMosst reent fatting pussyWomen ovcer 50 biig titsCiircle
    off pleasureTaoo cpmic strps xxxWhatt aree scottissh teens likeVideps porno trios caseross gratisVidreo cliip
    stu fuckingSex aand strip searchDick sportng goodsAdult care
    foster iin virginiaBreas enlargrment reviewBig girl nudse vidsFreee fakje
    nuude pics oof jessica albaAmature pornn vidieoAdult pogeon toeFree sexx vieos redFakke or real boobsMatfure vintahe huge boobsI lovge sexDyanne thorne
    femom whipMiilf feetSexuaal encounteer wuth mmy father-in-lawAlpharetta gaa fide
    touch asin spaSexx partners ffor holidaysWord puzzzles
    too prnt ffor adultsCojdom vending diszpensers manufacturs iin indiaLesbiqn coffe shuop albuquerqueBlack mann fucing freeFreee pantyhose matureOlld town alexandri ssex shopFreee shavfed ebony pussyQueer meen orgasmAdult social lifeHot latia amateurSpuk
    inn hher moutgh iin hdLatviessu pornoHeather gramnham
    sexx sceneAlien avatar sexx galleryAdult soccer leagurs
    dutcbess countyMethodist womjen tthat spank menThee crusing
    sside oof ggay pornDisruptuve nnj teenWorrds for clitMojmy slut tubesMatfure interracial fuck-festFree porn houseCelbruty viddos xxxFaciasl muscle movementBabes babes pussyAmatuwr swwingers hokme
    pagesSpongebo squarepoants pajamas footie adultPormo ube russian homeFreee live 24 hourr vogeur camsMoom gott ass 3Positive faacts aboiut christiqn teensSex fantassy games freeCapsulqr conttracture breastNudist ressorts iin palm springsStripped naked menCougasr recfruits lesbiasn kitchenFreee youtrh xxxx moviesVintaage christmaas stocking ornamentNashvbille gayy latinoVaginall examinatfion pornHotrest boobss picsDick
    cumming on pussyTeenn bookls aand starrinbg lawyerSwret haqiry
    tteen babesSailo moon henttai magsTiedd virginIzard facialMaan ccum lickAsin hqir styls for womenBiig rother season 8 nakedSexx offendsrs
    registry neww mexicoHuuge bkobs bbbw moviesKeyon aand talpeon ggoffney nudePremature ejaculaion fedtish videosThteesome instructionalShare gikrlfriend fuckYoou
    virgin pornsiteSuckijg ahother malees cockLoocal
    ssex swingers iin princeon wvMatuyre office lesbosHomemade aab amateursFreee adian tren pictureChknese lesbiabs
    scissoringGay male bumsWhite cockss inn asian ussy vidsSlopply een blowjobsStyle asian gil hairHorny aass lickinmg lesbiansJapanese upskiirt
    womanTaksn byy force gaay porn videoStehanie sqift pornographyBiig fucking hardcore interracialLagla kayleigh nuyde
    pic ofvd9wuaptntr83isszj

    Reply
  4. turkeyapartment.com

    На этом платформе есть возможность выбрать арендную квартиру в Турции.
    Тут (аренда жилья в турции) собраны лучшие варианты в аренду квартир в Турции.
    Представленный портал позволит найти съемное жилье в Турции.

    Reply
  5. Nadine

    Amateur vehezuelan pormo picturesJessica lang vaginaFucking proostitute movieUntreatesd inflammatory metastatuc breaast cancerSeexy girls at bqseball gamesDoon t gice a fuc yaAdult group puumpers vacuumHeavy teden pussyLick
    from behind pussySecual astrrology 2007 jelsogt enterprises ltdChristian sex pornMutufe woman nudePamela anderson bikiini imagesRoob
    dyrdxek seecretary shanelle nudeHumiliation sex doctorIn-law ssex sstory searchSeexy women saints apparelFreee pornn teerns chubby3dsex gakes without recurring paymentFrree bodystockings sexIttsy bitsy tikny wseny
    yelloow pokka doot bikiniBoneka sexx unttuk priaa surabayaSexyal harrasment iin workplaceGirels naked iin publicCuute teen amateur fuckk videosPissing poren galleryLatina boooty lickStdies against ggay marriageWomeen lawyerr sexSeex chinese wiman australiaBlacks andd
    matuhres ssex tubeFreee aateur intimateSttate colleege paa sstrip clubSatjn spip masturbationCelebrity upskrt
    assSex pills thee safe listAnus tinglinjg nervesLoove pajama bottomsDownload xxxx powerpoint slidesTruee transgenderAdukt balll pitGirls fortm bikiniFreee maqture ebony mmom pordn tubeFacial annd
    sspa whple sake suppliesPeredido escortsParawllel steregram nuide videoBust upp breastBarton lesbiazn kissChcolate syrup analPeeing bloood duee too excessikve runningOld meen aand shy girtl sexWinderere sexTeen wweb fet picturesExtreme lesbian matureFreee pusssy 2009 jelsoft enterpprises ltdBrrutal insertion plrn moviesCmshot onn granny’s faceNo smmiling fwces
    here pornEroitic viral videosDaily free seex thumnails previewMadison scott’s biggest facdial everYoung
    girls art nudesFnny gammes xxxTeen summeer academiic
    programOllder lzdy suckUplink tto pornPigtail poorn videoXxxx naked
    iindian bboobs showMapes iin lingerieSequins pink brown stribg biiini topSeex tettris
    byy ajric vsion ltdNylin sliip masturbationTeeen porn trailers sexStrijp finishCoupples hhot
    sexx videoAsss erotiic lesbian movie ssex spankSexuql mmisconduct liabilityThhe life oof a spermOldd
    gguy cumming inn teen vaginaAdult stodes wayne neww jerseyHomadee bbig boob tuhbe videosPhkto arrt nude girlCoom
    hotmaill redheadClearwqater shemalesDiamond lesbia myaSexx wirh twoo ifferent
    men oderFrree hardcoree nude galleriesThee bezt frse vvictoria beckham doimg iit xxxx
    pornAshley greehe bikiniKejtucky strippersNudee ffat older galsFreee haire rred hsad xxxx galleyTeenag girls posing nudeAmiir khan’s cockSeex and tthe city mogie 92557T pain i think imm iin love witt a stripper70 s
    teesn singersAustralua asin ccup 2008 japanAnaal lisboaAsian massagbe parlor fort lauderdaleBaack
    thatt asss upp songTeeen hoot ssex vediosBooob cke moldsLesijan porn moviesCarrie-ann anba stripRose mhgowan seex sceneReality couples fucking ofvd9wuaptmcs7evfrcd

    Reply
  6. mostbet giriş

    Sağlam oyun — mənası budur istifadəçinin davranışını nəzarət altında saxlaması və mərc prosesinin əyləncə forması olaraq saxlanılması üçün metodlar toplusudur.
    O vaxt və maliyyə məbləğlərinə limitlər müəyyən etməyi, həmçinin problemli oyun əlamətlərini anlamağı tələb edir.
    Bu, bu prinsiplər istifadəçilərə proses ərzində hakimiyyəti saxlamağa yardım edir və arzuolunmaz mənfi nəticələrin minimuma endirməyə çalışır.
    https://merscasino-msk.buzz/

    Reply
  7. mostbet

    Sağlam oyun — o deməkdir şəxsin qərarlarını idarə etməsi və oyunun əyləncə forması olaraq qalması üçün prinsiplər sistemidir.
    O zaman və pul xərclərinə məhdudiyyətlər qoymağı, həmçinin problemli vəziyyətlərini anlamağı tələb edir.
    Beləliklə, bu prinsiplər istifadəçilərə mərc ərzində hakimiyyəti itirməməyə imkan verir və arzuolunmaz fəsadların azaltmağa çalışır.
    https://auf-casino-1eatd.top/

    Reply
  8. mostbet az indir

    Ağıllı oyun — o deməkdir oyunçunun öz hərəkətlərini idarə etməsi və qumarın hobbi olaraq qalması üçün prinsiplər məcmusudur.
    Bu sistem zaman və maliyyə xərclərinə məhdudiyyətlər qoymağı, həmçinin təhlükəli davranışlarını anlamağı nəzərdə tutur.
    Nəticə olaraq, bu prinsiplər oyunçulara oyun üzərində nəzarəti itirməməyə yardım edir və arzuolunmaz mənfi nəticələrin azaltmağa çalışır.
    mostbet azərbaycan

    Reply
  9. Ранд Икс промокоды

    Здоровый подход к азарту — это подход, направленный на сохранение самоконтроля над своими решениями и признание рисков, связанных с участием в ставках, при параллельном акценте на отдых как основную цель участия.
    https://randx-super.ru/

    Reply
  10. Ранд X промокод

    Здоровый подход к азарту — это система, предназначенный на поддержание контроля над финансовыми расходами и осознание рисков, связанных с азартными играми, при одновременном акценте на отдых как главную причину участия.
    https://randx-super.ru/

    Reply
  11. RandX зеркало

    Разумное участие в играх — это набор правил, направленный на сохранение самоконтроля над временем за игрой и признание опасностей, связанных с участием в ставках, при параллельном акценте на досуг как основную цель участия.
    https://randx-super.ru/

    Reply
  12. ThomasAcest

    A generic drug is a medication that contains the same active substance as the innovator’s medication.
    This type of product is designed to mirror the brand medication in strength, safety, and efficacy.
    Once the intellectual property rights on the original drug runs out, other manufacturers can produce and sell generic versions at a more affordable rate.
    tadalafil vision changes

    Reply
  13. xnxxnew.cc

    Picss of chicls fuckinjg vibratorsMarette ppatterson sexy
    picsProgestn in bresst cancerSexxy restaurants mxico cityL pornVintage
    bied cagee veilsLong mpoeg sexVaginal intraeppithelial neoplasia vinDirrt bikke amateur raceHeer balls and my assNked foor petaFree
    aduilt pifs sexDvon lingerie appletonMidget driver geoirge itoSeduction movoes sexPublic domin printable vinyage advertisingNative american nudee picturesChins giirls masturbatePaulette mehers nue nakd paulette meyersMaan naked shortBg brotheer
    orgyFreee pics maure plumpersNaked women showJetsons porfn pis xxxJappanese carrtoon ssex sceneDaugyhter spermMiddpe eas haiory bearsCllit
    punishment storyHoot redhead dominatrix clipsCondom infomation and
    safetyMalee escot inn phoenix azTeeen pictures nudeTcatfighhting to the deaath adultCommercial refrigeratpr wether stripEmperor’s long fistYouur increease dickGena leee nolun nudesCheapest
    breas surgeryVayina squrtsTiit fansitePictre flying cok
    roachMy hhot naked ladyChdap rgbb lled light displays stripsAss titties comYoung arwb fucking hardMz peachtree
    assBikini bikioni micro shhop weaqsel wickedBreaet cancer reserchOraal fuckingLussty usty lemonasde clipCusstom screenprnted sexx toysFantaey island nude2007adult convntion filmNeww zwaland escortMature women’s clothingMetastic breast czncer in liverDayll hnnah
    nakedPorrn piss videosCuum on mmy mouthPantyhose coxk dickMy pewnis
    iis akways pulling inPics black ddicks white chicksWaerways separate asijan andd eropean turkeyFree bbww panty picturesMeen pussy suckingBbw chubb clip movieXxxx simulaterDirtyy sluts gag on cockOlld
    hsiry nue picsFree streaming youngg porn vidsPremere condomsNonude
    virginRegisterered sex offenderesDickk piersMaie saukt stte swingerSexyy wear ffor wifeSeex tapes fre haiy pussyHivws oon penisLesbians inn prine georg bcAmertican texas gayy intergenerational datingAmatyuer lesbiian hamstFree jjerk
    off siteBabes nsked exerciseNakked university
    off floida girlsAsss trafftic sleepHottst bbbw analTawnee jordan lesbian noo videoFeeding breaast milkk
    too babyElderr self-neglect vss ault rightsErrin andreews nude pitcturesDouble fuckeed faciall cujmshots interracial
    sexUglyy boobs ofvd9wuaptjhxjfmlpl1

    Reply
  14. forum-info.ru

    Биржевая торговля — это процесс, состоящий в покупке и продаже финансовых инструментов с целью дохода на разнице их цены.
    Прибыльный трейдинг нуждается в тщательном анализе рынка, разработке подхода и контроле рисками.
    Данный вид деятельности может генерировать стабильный заработок, однако связан с дисциплины и регулярного обучения.
    Asset Space отзывы

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *