0

X=rpoisline(4)用来生成线条并用plot(X). 我有X$ends他们的坐标和他们的交点selfcrossing.psp(X)(在 R 和 spatstat : library(spatstat))。

我需要获取段列表及其坐标并能够操作它们(更改它们的方向、位置、交叉点......)。这些线段必须通过一条线与另一条线和窗口的交点来定义。

那么,我是否错过了一种简单的方法来在非相交段的 psp 中转换几条相交线的 psp(我希望它很清楚

如果您有不简单的方法,我很感兴趣!

谢谢你的时间 !

编辑 :

这是我的行:

这就是我所拥有的

如果我设法处理每个部分(一个接一个),这是我认为可以产生的那种随机的东西。所以我需要从我的随机行列表中获取一个段列表。

这就是我需要的

4

2 回答 2

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))
}
于 2013-01-18T14:59:01.103 回答
1

spatstat功能selfcut.psp正是为此目的而设计的。

Y <- selfcut.psp(X)

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

于 2016-06-27T02:18:52.600 回答