如何从随机自相交行列表中生成段列表(R中的psp)?

时间:2013-01-16 15:39:01

标签: r segment spatstat

我正在使用X=rpoisline(4)生成行并使用plot(X)绘制它们。 使用X$ends我的坐标和交叉点与selfcrossing.psp(X)(在R中使用spatstat:library(spatstat))。

我需要获得一个段及其坐标列表,并能够操纵它们(改变它们的方向,位置,交叉点......)。这些段必须由一条线与另一条线和窗口的交点定义。

所以,我错过了一种简单的方法来转换非相交段的 psp 中几条相交线的 psp (我希望它很清楚)?

如果你有一个非简单的方法,我很感兴趣!

谢谢你的时间!

编辑:

以下是我的行:

here is what I have

如果我设法处理每个段(逐个),我认为可以生成随机的东西。所以我需要从我的随机行列表中获取一个段列表。

and here is what I need

2 个答案:

答案 0 :(得分:2)

好的,之后有几次破解咖啡,这里有一些错误的代码可以满足您的需求。清理工作我会留给你。

ranpoly <- function(numsegs=10,plotit=TRUE) {

require(spatstat)
# temp fix: put the first seg into segset. Later make it a constrained random.
segset<-psp(c(0,1,1,0,.25),c(0,0,1,1,0),c(1,1,0,0,1),c(0,1,1,0,.75),owin(c(0,1),c(0,1)) ) #frame the frame
for (jj in 1: numsegs) {
    # randomly select a segment to start from, a point on the seg, the slope,and direction
    # later... watch for slopes that immediately exit the frame
    endx <-sample(c(-0.2,1.2),1)  #force 'x1' outside the frame
# watch that sample() gotcha
    if(segset$n<=5) sampset <- c(5,5) else sampset<-5:segset$n
    startseg<-sample(sampset,1) #don't select a frame segment
    # this is slope of segment to be constructed
    slope <- tan(runif(1)*2*pi-pi) # range +/- Inf 
    # get length of selected segment
    seglen<-lengths.psp(segset)[startseg]
    startcut <- runif(1) 
    # grab the coords of starting point (similar triangles)
    startx<- segset$ends$x0[startseg] + (segset$ends$x1[startseg]-segset$ends$x0[startseg])*startcut #seglen
    starty<- segset$ends$y0[startseg] + (segset$ends$y1[startseg]-segset$ends$y0[startseg])*startcut #seglen
    # make a psp object with that startpoint and slope; will adjust it after finding intersections
    endy <- starty + slope*(endx-startx)
    newpsp<-psp(startx,starty,endx,endy,segset$window,check=FALSE)
    # don't calc crossing for current element of segset
    hits <- crossing.psp(segset[-startseg],newpsp)
    segdist <- dist(cbind(c(startx,hits$x),c(starty,hits$y)))
    # dig back to get the crosspoint desired -- have to get matrixlike object out of class "dist" object
    # And, as.matrix puts a zero in location 1,1 kill that row.
    cutx <- hits$x[ which.min( as.matrix(segdist)[-1,1] )]
    cuty <- hits$y[which.min(as.matrix(segdist)[-1,1] )]
    segset <- superimpose(segset,psp(startx,starty,cutx,cuty,segset$window))

} #end jj loop
if(plotit) plot(segset,col=rainbow(numsegs))
return(invisible(segset))
}

答案 1 :(得分:1)

spatstat函数selfcut.psp专门用于此目的。

Y <- selfcut.psp(X)

有关操纵线段模式的更多信息,请参阅spatstat book中的第4.4节。